/* SECTION */
.blue-section{
  background-color: var(--color-primary);
  min-height: 30vw;
  padding: 8vh 0;
}

.white-section{
  padding: 0 var(--marginside);
}

.blue-section .center{
  text-align: center;
  color: var(--color-white);
}

.white-section, .blue-section{
  margin: 64px 0 0 0;
}

.title-white-section{
  margin: 40px 0;
  color: var(--color-primary);
}

.accent-content{
  background-color: var(--color-accent);
  height: 20px;
  width: 20vw;
  margin: -18px 0 0 16px;
}

@media (max-width: 600px) {
  .white-section{
    padding: 0 var(--marginsidephone);
  }
  .accent-content{
    width: 60vw;
  }
}

/* HERO BANNER */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 430px;
  height: 100vh;
  background: url('../../img/asset/hero-banner.png')  center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-position: center 15%; */
  overflow: hidden;
}

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

.hero-banner > * {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-primary) 0%, #2560b500 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-accent);
  font-size: 12vh;
  font-weight: 400;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(30,48,88,0.25);
}

.hero-slogan {
  font-size: 3vh;
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(30,48,88,0.15);
}

.hero-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-black);
  padding: 12px 36px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(11,25,53,0.14);
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: var(--color-accent);
  color: var(--color-black);
}

@media (max-width: 700px) {
  .hero-title { font-size: 3.2rem; }
  .hero-slogan { font-size: 1.0rem; }
  .hero-btn { font-size: 16px; padding: 9px 22px; }
}

/* ABOUT US */
.about-us-content{
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 6vh;
  align-items: center;
  justify-content: stretch;
}

.about-us-image{
  aspect-ratio: 1/1;
  height: 24vw;
  object-fit: cover;
  min-height: 300px;
}

.about-us-isi{
  /* padding: 0 0 20px 0; */
  text-align: justify;
  line-height: 1.5;
}

.about-us-btn{
  background-color: var(--color-accent);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--color-black);
  margin: 32px 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-us-content{
    display: block;
  }
  .about-us-image{
    height: 68vw;
  }
}

/* MENU PAKET */
.menu-container, .service-container{
  display: flex;
  flex-direction: row;
  gap: 4vw;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-container::-webkit-scrollbar, .service-container::-webkit-scrollbar { 
  display: none; 
}

.card-hover {
  scroll-snap-align: start;
}

.scroll-dots{
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.scroll-dots span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  transition: background 0.3s;
}
.scroll-dots span.active{
  background: var(--color-primary);
}

@media (max-width: 900px){
  .scroll-dots{
    display: flex;
  }
}

/* GALERI */
.cp-wrapper.video-mode {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.tiktok-highlight-container {
    width: 325px !important; 
    height: 575px !important;
    min-height: 575px !important;
    max-width: 90vw;

    /* Style Kotak */
    background: #000000;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    
    /* Layout */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.tiktok-highlight-container .tiktok-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.tiktok-highlight-container iframe {
    width: 100% !important;
    height: 100% !important;
}

.btn-gallery {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-black);
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-gallery:hover {
  transform: scale(1.05);
  background-color: var(--color-white);
}

@media (max-width: 900px) {
  .btn-gallery {
    margin-bottom: 20px;
  }
}

/* TESTIMONI */
/* CONTAINER UTAMA */
.video-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; 
  gap: 24px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* --- WRAPPER UKURAN SERAGAM --- */
.instagram-wrapper, 
.tiktok-wrapper {
    flex: 0 0 auto;
    width: 325px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    height: 575px; 
}

.instagram-wrapper:hover, 
.tiktok-wrapper:hover {
  transform: translateY(-5px);
}

/* INSTAGRAM */
.instagram-wrapper {
  background: white;
  border: 1px solid #eee;
}

/* TIKTOK */
/* WRAPPER TIKTOK */
.tiktok-wrapper {
    flex: 0 0 auto;
    width: 325px;
    height: 575px;
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiktok-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(45deg, #111, #222);
    color: white;
    text-align: center;
    transition: background 0.3s;
}

.tiktok-placeholder:hover {
    background: #222;
}

/* Icon Play */
.play-icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    border: 2px solid white;
}

.play-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* IFRAME (Saat Video Jalan) */
.tiktok-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

/* --- RESPONSIVE HP --- */
@media (max-width: 768px) {  
  .video-container {
      gap: 16px;
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 15px;
  }
/* 
  .instagram-wrapper, 
  .tiktok-wrapper {
      width: 280px; 
      height: 500px;
  } */
}

/* ACHIEVEMENTS */
.blue-section.achievements {
    position: relative;
    background: url('../../img/asset/hero-banner.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    padding-left: var(--marginside);
    padding-right: var(--marginside);
    color: var(--color-white);
}

.blue-section > h2{
  margin-bottom: 30px;
}

.blue-section.achievements::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    opacity: 0.75;
    z-index: 1;
}

.blue-section.achievements > * {
    position: relative;
    z-index: 2;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}

@media (min-width: 768px) {
  .achievements-list {
    flex-direction: row;
    gap: 4rem;
  }
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-main {
    color: var(--color-white);
    font-weight: bold;
    font-size: 4rem;
    letter-spacing: 1px;
}

.achievement-desc {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .achievement-main {
    font-size: 2.5rem;
  }
  .achievement-item{
    margin: 0 0 10px 0;
  }
  .achievement-desc{
    font-size: 1rem;
  }
  .blue-section > h2{
    text-align: center;
  }
}