/* BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans Flex", sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background: #F7F7F7;
}

.bg-park {
  position: relative;
  background: url('images/hill.jpg') no-repeat center center/cover;
}

.bg-park::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.bg-park .container {
  position: relative;
  z-index: 2;
  min-height: 400px !important;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.left {
  text-align: left !important;
}

.left-float {
  float: left;
  width: 20%;
  margin: 0;
  padding: 0;
  display: block;
}

.right-float {
  float: right;
  width: 80%;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.right-float p,
.right-float b {
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  color: #F5F5F5;
}

a.center-btn {
  background: goldenrod !important;
  font-size: 16px;
  padding: 0px 20px;
  border-radius: 10px;
  color: white !important;
  text-decoration: none;
  display: inline-block;
  margin: 50px 0 0 0;
}

a:hover.center-btn {
  background: gold !important;
  color: #333 !important;
  transition: all 0.3s ease;
}

.call_btn {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.call_btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("images/call.webp") no-repeat center;
  background-size: contain;
  margin-right: 8px;
  filter: brightness(0) invert(1); /* Ensures the call icon renders white */
}

.call_btn:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

/* Background */
.grey2 {
  background: #FBFBFB;
}

.blue {
  background: #29527c;
  color: white;
}

.blues {
  background: linear-gradient(to bottom, #254B72, #29527c);
  color: white;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  background: #fffff;
}

/* NAVBAR */
.navlogo {
  background: url(images/logo-white_small.png);
  width: 140px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -10000000px;
}

.navbar {
  background: linear-gradient(to bottom, #254B72, #29527c);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAV LINKS DESKTOP */
.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
}

.nav-links a:hover {
  color: #000;
  background: rgba(245, 245, 245, 0.8);
  transition: all 0.5s ease;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  color: #fff;
  cursor: pointer;
}

/* BUTTON */
.btn {
  background: gold;
  color: black;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.btn:hover {
  background: #333;
  color: #fff;
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  background: url('images/hill.jpg') no-repeat center center/cover;
  min-height: 500px !important;
  color: #333;
  padding: 150px 20px 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 30px;
  line-height: 40px;
  padding: 0 50px;
}

.bigtitle {
  font-size: 36px !important;
  font-weight: 700;
}

.grey {
  color: #999;
}

.white_text {
  color: #fff;
}

.hero_img {
  margin-top: 50px;
  border-radius: 20px;
}

/* SECTION */
section {
  padding: 80px 0;
}

section .title_little {
  font-size: 24px;
  color: #0f3d2e;
  margin-bottom: 0px;
}

section span {
  color: #999;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 50px;
}

section p {
  margin-top: 20px;
  color: #555;
  font-size: 16px;
  line-height: 22px;
  padding-right: 50px;
}

.white {
  background: #fff;
}

.little {
  font-size: 17px !important;
  color: #777 !important;
  margin-bottom: 20px;
  font-weight: normal;
}

.center {
  text-align: center;
  margin-bottom: 50px;
}

.big {
  font-size: 26px !important;
  color: #0f3d2e !important;
  margin-bottom: 10px;
  font-weight: bold;
}

/* GRID */
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-3 {
  display: grid;
  gap: 20px;
}

.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* RESPONSIVE GRID */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

/* IMAGE */
img {
  width: 100%;
  border-radius: 10px;
}

/* CARD */
.card {
  padding: 50px 20px;
  border-radius: 10px;
  background: #FBFBFB;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.card ol {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}
p.big span {
  color: #2b1350;
}
p.big span {
  line-height: 16px !important;
  margin: 10px 0;
}

.card ol li {
  margin: 5px;
  position: relative;
  padding-left: 20px;
  background: url('images/check.svg') no-repeat left center;
  background-size: 15px 15px;
}

.card .btn {
  display: block;
  width: 100% !important;
  text-align: center;
  margin-top: 20px;
}

.highlight {
  border: 2px solid gold;
  transform: scale(1.03);
}


/* FEATURES */
.features {
  padding: 80px 0 !important;
}

.features span {
  color: #ccc;
}

.features container {
  margin: 0 !important;
  padding: 0 !important;
}

.features div {
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
}

.features div img {
  width: 70px;
  margin: 0 auto !important;
}

.center {
  display: flex;
  justify-content: center;
}

.products .center {
  display: block;
  margin: 0 auto 30px auto !important;
}

.centered {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.blue {
  background: #3366CC;
  color: white;
}

.testimonials {
  padding: 80px 0px;
}

.testimonials h2 {
  text-align: center;
}

.testimonials span {
  color: #999;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 40px;
}

.testimonials .card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 10px;
}

.testimonials .card h3 {
  font-size: 18px;
  color: #333;
  line-height: 22px;
  text-align: center;
}

.testimonials .card span {
  color: #999;
  font-size: 14px;
  margin-top: 30px !important;
  display: block;
  text-align: center;
}

img.testi {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  display: flex;
  align-items: center;
}

/* Lokasi */
.lokasi {
  background: #fff;
  padding: 100px 20px;
}

.lokasi h2 {
  font-size: 24px;
  color: #0f3d2e;
  text-align: center;
  margin-bottom: 0px;
}

.lokasi span {
  color: #999;
  font-size: 16px;
  font-style: italic;
  text-align: center;
  display: block;
  margin-bottom: 50px;
}

/* CTA */
.cta {
  background: linear-gradient(to bottom, #254B72, #29527c);
  color: white;
  text-align: center;
}

.cta p {
  color: #ddd;
  font-size: 16px;
  margin: 20px auto;
  max-width: 600px;
  text-align: justify;
}

.cta .right {
  width: 40% !important;
  float: right !important;
}

.banner .list {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.banner img {
  width: 15%;
  float: left;
}

/* Contact */
.contact {
  position: fixed;
  bottom: 150px;
  right: 40px;
  display: inline;
  gap: 10px;
  z-index: 999;
}

.wa {
  background: url(images/wa.webp) no-repeat left;
  width: 60px;
  height: 60px;
  display: block;
  text-indent: -160px;
  margin: 0 0 10px 0 !important;
  background-size: cover;
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-decoration: none;
  color: #fff;
  padding-top: 15px;
  opacity: 0.8;
}

.ig {
  background: url(images/ig.webp) no-repeat left;
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -10000000px;
  margin: 0 0 10px 0 !important;
  background-size: cover;
  opacity: 0.8;
}

.tiktok {
  background: url(images/tiktok.webp) no-repeat left;
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -10000000px;
  background-size: cover;
  margin: 0 0 10px 0 !important;
  opacity: 0.8;
}

.yt {
  background: url(images/yt.webp) no-repeat left;
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -10000000px;
  background-size: cover;
  margin: 0 0 10px 0 !important;
  opacity: 0.8;
}

.contact span {
  background: #fff;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(36, 35, 35, 0.8);
}

.contact a {
  transition: all 0.3s ease;
}

.contact a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Youtube */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.overlay-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: ;
  rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Page */
.page {
  padding: 80px 0;
}

.page .bigtitle {
  font-size: 24px !important;
  color: #0f3d2e;
  margin-bottom: 0px;
}

.page span {
  color: #999;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 50px;
  display: block;
}

.page p {
  color: #555;
  font-size: 16px;
  line-height: 28px;
  padding-right: 50px;
  text-align: justify;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #fff !important;
    font-weight: bold;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 20px;
    background: #fff !important;
    flex-direction: column;
    width: 320px !important;
    padding: 0px 5px;
    border-radius: 5px 10px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 5px 10px;
    width: 100%;
    margin: 0;
    font-size: 16px !important;
    color: #00bfff !important; /* Biru muda */
  }

  .nav-links a:hover {
    background: #F5F5F5;
    color: #000 !important;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0f3d2e;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  section p {
    padding-right: 0 !important;
  }

  .bigtitle {
    font-size: 28px !important;
    line-height: 32px !important;
    margin-top: -20px !important;
  }

  .right-float {
    width: 70% !important;
    margin: 0;
    padding: 0;
  }

  .left-float {
    width: 20% !important;
    margin: 0;
    padding: 0;
  }

  .testimonials h2,
  .lokasi h2 {
    text-align: center;
  }

  .banner img {
    width: 25%;
  }

  .video-hero {
    min-height: 100vh !important;
  }

  .video-wrapper iframe {
    min-height: 100vh !important;
  }

  .slide .content {
    text-align: center;
  }

  .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .content .btn,
  .content .btn_trans {
    display: inline-block;
    width: auto;
    margin: 0;
  }

  .content .btn_trans {
    margin-left: 0;
  }
}

/* Hero Section Wrapper */
.heru {
  margin-top: -110px;
  top: 0 !important;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium Gallery Items Styling */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 46, 0.75);
  /* Matching the site's dark green #0f3d2e theme */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.gallery-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.gallery-hover-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-hover-text {
  transform: translateY(0);
}

/* Premium Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 12, 0.95);
  /* Deep dark forest backdrop */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-modal .lb-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.open .lb-img {
  transform: scale(1);
}

/* Glassmorphism Prev/Next buttons */
.lightbox-modal .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2510;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal .lb-prev {
  left: -80px;
}

.lightbox-modal .lb-next {
  right: -80px;
}

.lightbox-modal .lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-modal .lb-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* Elegant Close Button */
.lightbox-modal .lb-close {
  position: absolute;
  top: -60px;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  z-index: 2510;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-modal .lb-close:hover {
  color: #fff;
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.3);
  transform: rotate(90deg);
}

/* Image Captions */
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 15, 12, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 2520;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  pointer-events: none;
  white-space: nowrap;
}

.lightbox-modal.open .lightbox-caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive adjustment for Lightbox */
@media (max-width: 1024px) {
  .lightbox-content {
    max-width: 80%;
  }

  .lightbox-modal .lb-prev {
    left: -60px;
  }

  .lightbox-modal .lb-next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-modal .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .lightbox-modal .lb-prev {
    left: 10px;
    top: auto;
    bottom: -60px;
    transform: none;
  }

  .lightbox-modal .lb-next {
    right: 10px;
    top: auto;
    bottom: -60px;
    transform: none;
  }

  .lightbox-modal .lb-nav:hover {
    transform: scale(1.05);
  }

  .lightbox-modal .lb-close {
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
  }

  .lightbox-caption {
    bottom: 20px;
    padding: 6px 18px;
    font-size: 12px;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6));
}

/* CONTENT */
.content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  max-width: 800px;
  text-align: center;
}

/* TEXT */
.content h2 {
  font-size: 38px;
  margin-top: -100px !important;
  margin-bottom: 30px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 40px;
}

.content p {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  color: #fff;
  font-size: 18px;
  padding: 0;
  margin: 20px 0 50px 0;
  line-height: 26px;
}

.content .btn {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}

.content .btn_trans {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 20px;
}

.content .btn_trans:hover {
  background: #fff !important;
  color: #254B72 !important;
  transition: all 0.3s ease;
}

/* Animation Triggers */
.slide.active .content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.slide.active .content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.slide.active .content .btn,
.slide.active .content .btn_trans {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.0s;
}

/* BUTTON */
.btn {
  background: gold;
  color: black;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 8px;
}

/* NAV BUTTON */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ABOUT SECTION POP-UP */
.about .title_little,
.about span,
.about p,
.about .btn,
.about img {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about.show .title_little {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.2s;
}

.about.show span {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.4s;
  display: block;
  /* Ensure it behaves well with animation */
}

.about.show p {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.6s;
}

.about.show .btn {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.8s;
}

.about.show img {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1.1s;
}

/* PRODUCTS SECTION CARD ANIMATION */
.products .card {
  opacity: 0;
  transform: translateX(-50px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.products.show .card:nth-child(1) {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.3s;
}

.products.show .card:nth-child(2) {
  opacity: 1;
  transform: translateX(0) scale(1.03);
  transition-delay: 0.6s;
}

.products.show .card:nth-child(3) {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.9s;
}

/* Adjust highlight card specifically to ensure its scale is correct after animation */
.products.show .card.highlight {
  transform: translateX(0) scale(1.03);
}

/* FEATURES (KEUNGGULAN) SECTION ANIMATION */
.features .grid-4>div {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features.show .grid-4>div:nth-child(1) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.2s;
}

.features.show .grid-4>div:nth-child(2) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.4s;
}

.features.show .grid-4>div:nth-child(3) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.6s;
}

.features.show .grid-4>div:nth-child(4) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.8s;
}

/* HIGHLIGHT SECTION ANIMATION */
.features.blues .grid-2>.left {
  opacity: 0;
  transform: scale(0.8) translateY(40px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features.blues.show .grid-2>.left:nth-child(1) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.2s;
}

.features.blues.show .grid-2>.left:nth-child(2) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.4s;
}

.features.blues.show .grid-2>.left:nth-child(3) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.6s;
}

.features.blues.show .grid-2>.left:nth-child(4) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.8s;
}

/* TESTIMONIALS SECTION ANIMATION */
.testimonials .grid-2 .card {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonials.show .grid-2 .card:nth-child(1) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.3s;
}

.testimonials.show .grid-2 .card:nth-child(2) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.6s;
}

/* TESTIMONIAL CAROUSEL */
.testi-carousel {
  position: relative;
  width: 100%;
  margin: 40px 0;
}

.testi-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testi-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* TESTIMONIAL CARD SEQUENTIAL ANIMATIONS */
.testi-slide .card img.testi,
.testi-slide .card h3,
.testi-slide .card span {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testi-slide .card img.testi {
  transform: translateY(-50px);
}

.testi-slide .card h3 {
  transform: translateY(50px);
}

.testi-slide .card span {
  transform: translateX(50px);
}

/* Trigger animations when slide is active */
.testi-slide.active .card img.testi {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.testi-slide.active .card h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.testi-slide.active .card span {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.9s;
}

.testi-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testi-prev,
.testi-next {
  background: #254B72;
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.3s;
  pointer-events: auto;
  opacity: 0.7;
}

.testi-prev {
  margin-left: 0;
}

.testi-next {
  margin-right: 0;
}

.testi-prev:hover,
.testi-next:hover {
  background: gold;
  color: black;
  opacity: 1;
  transform: scale(1.1);
}

/* INFO SECTION 50/50 */
.info-section {
  width: 100%;
  background: #fff;
  margin: 0 !important;
  padding: 0 !important;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.info-left,
.info-right {
  flex: 0 0 50%;
  width: 50%;
  min-height: 450px;
}

.info-left {
  background: #254B72;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  text-align: left;
}

.info-content {
  max-width: 500px;
}

.info-content h3 {
  font-size: 24px;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: #fff;
}

.info-content p {
  font-size: 16px;
  line-height: 22px;
  color: #eee;
  margin-bottom: 15px !important;
  padding: 0 !important;
}

.info-content hr {
  margin: 20px 0 !important;
  width: 150px;
}

.info-content span {
  margin: 0px 0 50px 0 !important;
  padding: 10px 0 50px 0 !important;
}

.info-content .btn {
  margin-top: 30px;
  display: inline-block;
}

.info-right {
  flex: 0 0 50%;
  width: 50%;
  min-height: 450px;
}

.info-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0%;
}

/* INFO WHITE SECTION 50/50 */
.info-row-white {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
}

.info-left-white,
.info-right-white {
  flex: 0 0 50%;
  width: 50%;
  min-height: 450px;
}

.info-left-white img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0%;
}

.info-right-white {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  background: #fff;
}

.info-content-white {
  max-width: 500px;
}

.info-content-white h3.putih {
  font-size: 24px;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: #333 !important;
}

.info-content-white span {
  color: #999;
  font-size: 16px;
  font-style: italic;
  display: block;
  margin: 10px 0 20px 0 !important;
}

.info-content-white p {
  font-size: 16px;
  line-height: 22px;
  color: #666 !important;
  margin-bottom: 15px !important;
  padding: 0 !important;
}

.info-content-white hr {
  margin: 20px 0 !important;
  width: 150px;
  border: 1px solid #eee;
}

.info-content-white .btn {
  margin-top: 30px;
  display: inline-block;
}

@media (max-width: 768px) {

  .info-left-white,
  .info-right-white {
    flex: 0 0 100%;
    width: 100%;
    min-height: 300px;
  }

  .info-right-white {
    padding: 50px 20px;
  }
}

/* INFO CONTENT WHITE SEQUENTIAL ANIMATION */
.info-content-white h3,
.info-content-white span,
.info-content-white p,
.info-content-white hr,
.info-content-white .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-section.show .info-content-white h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.info-section.show .info-content-white span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.info-section.show .info-content-white p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.info-section.show .info-content-white hr {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.info-section.show .info-content-white .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}



@media (max-width: 768px) {
  .btn_trans {
    margin-top: 10px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .info-left,
  .info-right {
    flex: 0 0 100%;
    width: 100%;
    min-height: 300px;
  }

  .info-left {
    padding: 50px 20px;
  }
}

/* INFO CONTENT SEQUENTIAL ANIMATION */
.info-content h3,
.info-content span,
.info-content p,
.info-content hr,
.info-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-section.show .info-content h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.info-section.show .info-content span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.info-section.show .info-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.info-section.show .info-content hr {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.info-section.show .info-content .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

/* CTA Logo Position */
.logo_small {
  position: relative;
}

.cta-logo {
  position: absolute;
  top: 0%;
  right: 0;
  transform: translateY(0%);
  width: 120px !important;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .cta-logo {
    position: static;
    display: block;
    margin: 20px 0 0 0;
    width: 100px !important;
  }
}

/* CTA Grid Custom Widths */
@media (min-width: 768px) {
  .cta-grid {
    grid-template-columns: 30% 30% 40% !important;
    gap: 40px;
  }
}

/* Contact Page Custom Buttons */
.contact-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.contact-button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #333333;
}

.contact-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-page-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Phone buttons style (Forest Green Theme) */
.contact-page-btn.btn-phone {
  background: #0f3d2e;
  color: #ffffff !important;
  border: 1.5px solid #0f3d2e;
}

.contact-page-btn.btn-phone img {
  filter: brightness(0) invert(1);
}

.contact-page-btn.btn-phone:hover {
  background: #175642;
  border-color: #175642;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.25);
}

/* TikTok button style (Dark Theme) */
.contact-page-btn.btn-tiktok {
  background: #010101;
  color: #ffffff !important;
  border: 1.5px solid #010101;
}

.contact-page-btn.btn-tiktok:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 1, 1, 0.3);
}

/* Instagram button style (Curated Sunset Gradient) */
.contact-page-btn.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  border: none;
}

.contact-page-btn.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
  filter: brightness(1.05);
}

/* YouTube button style (YouTube Red Theme) */
.contact-page-btn.btn-youtube {
  background: #ff0000;
  color: #ffffff !important;
  border: 1.5px solid #ff0000;
}

.contact-page-btn.btn-youtube:hover {
  background: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}