/* ============================================
   VARIABEL WARNA (SEMUA DIGABUNG DI SINI)
   ============================================ */
:root{
  --putih: #ffffff;
  --bg-cream: #F3E8D8;    /* dulu: --bg-lighter */
  --bg-beige: #E7D6C5;       /* dulu: --bg-beige */
  --coffee: #1F1F1F;        /* dulu: --coffee */
  --merah: #E63946;     /* dulu: --merah */
  --merah2: rgb(214, 40, 40);       /* dulu: --merah2 */
  --star: #F5A623;
  --kuning: #ece35a;    /* dulu: --merah2 */
  --beige: #F5F5DC;
  --green: #317939;
  --green2: #69c55e;
  --dark-maroon: #4A0E0E;
  --nude: #F5E6D8;
  --charcoal: #1A1A1A;
  --wine: #3D0C0C;
  --warna1:  #7A1212;
  --warna2: #4A0E0E;
  --warna3:  #a14545;
  --nude2: #FDEB9E;
  --nude3: #FFF9D2;
  

  --grad-black: #000000;
  --grad-maroon: #3D0000;
  --grad-red-dark: #990000;
  --grad-red: #CC0000;
  --grad-red-bright: #FF0D0D;
  --maroon: #4A0000;
  --merah3: #fdeded;

  --card-h: 300px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-full: 999px;
}

/* ============================================
   BASE
   ============================================ */
*{ box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
}

section { 
  scroll-margin-top: 66px; 
}
body{
  overflow-x: hidden;
  margin: 0;
  background: var(--putih);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vw; 
}

/* REVEAL UP*/
.reveal-up {
  opacity: 0;
  transform: translateY(-40px); /* dari atas */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scrollbar-hide::-webkit-scrollbar{ display: none; }
.scrollbar-hide{ -ms-overflow-style: none; scrollbar-width: none; }

@media (prefers-reduced-motion: reduce){
  .feature-card, .review-card{ transition: none; }
}

.feature-section{ width: 100%; background-color: var(--putih); padding: 64px 0 32px; }
@media (min-width: 768px){
  .feature-section{ padding: 96px 0 48px; }
}

/* ============================================
   HERO
   ============================================ */
.dashboard{
  width: calc(100% - 48px);
  max-width: 1250px;
  margin: 66px auto 0;
  background: var(--putih);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.navbar{ display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 66px }
.navbar-left{ color: var(--putih); display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; margin-right: auto; width: 100%; }
.hero-title .text-highlight{ color: var(--star); }
.logo-icon{ display: flex; gap: 3px; }
.logo-icon span{ width: 10px; height: 16px; background: var(--coffee); border-radius: 6px; display: inline-block; }
.logo-icon span:last-child{ margin-left: -4px; opacity: 0.6; }
.navbar-logo-img{ height: 28px; width: auto; object-fit: cover; }
.navbar-center{ display: flex; align-items: center; gap: 32px; font-size: 14px; color: var(--coffee); }
.navbar-center a{ text-decoration: none; color: var(--putih); display: flex; align-items: center; gap: 4px; }
.navbar-toggle{ display: none; background: none; border: none; font-size: 20px; color: var(--putih); cursor: pointer; padding: 8px; }
.navbar-toggle.is-active{ background: rgba(255,255,255,0.15); border-radius: 50%; }
.navbar-right{ width: 24px; }
.nav-link{ color: var(--putih); text-decoration: none; transition: color .25s ease;}
.nav-link:hover{ color: var(--star);}
.nav-link:active{ color: var(--star);}

.hero {
  margin: 24px 24px 24px 24px;
  border-radius: var(--radius-md);
  background: 
    linear-gradient(160deg, rgba(0, 0, 0, 0.8), rgba(153, 0, 0, 0.6) 55%, rgba(255, 13, 13, 0.35)),
    url('aset/bg/bg1.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 40px 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.hero-left{ display: flex; flex-direction: column; gap: 22px; }
.hero-title{ font-size: 60px; font-weight: bold; line-height: 0.95; letter-spacing: -3px; color: var(--putih); }
.hero-desc{
  font-size: 16px; color: var(--putih); max-width: 380px; line-height: 1.5;
  border-top: 1px solid rgba(253, 247, 247, 0.897); padding-top: 16px;
}
.hero-review{ display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--star); }
.hero-review strong{ color: var(--star); }
.avatar-circle{ width: 30px; height: 30px; border-radius: 50%; background: var(--merah3); border: 2px solid var(--putih); }
.hero-actions{ display: flex; align-items: center; gap: 24px; }

.btn-primary{
  display: inline-block;
  text-decoration: none;
  background: var(--putih); 
  color: var(--coffee); 
  border: none;
  padding: 15px 26px; 
  border-radius: var(--radius-full);
  font-size: 14px; 
  font-weight: 600; 
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover{
  background: var(--merah2);
  color: var(--putih);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 44, 34, 0.2);
}

.hero-right{ overflow: relative; display: flex; justify-content: center; }
.media-wrapper{ 
  position: relative; 
  width: 100%; 
  max-width: 480px;
  overflow: hidden;
}

.photo-video{ 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 4.6;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Dots */
.hero-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.hero-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.is-active{
    background: #fff;
    transform: scale(1.2);
}

.hero-carousel-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.45s ease;
        transform: none !important;
    }
}

/*buble 1*/
.floating-bubble{
    position: absolute;
    top: 50px;
    right: -14px;
    background: #fff;
    color: #7a3b1d;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 10;
    animation: floatBubble 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
}

/*buble 2*/
.floating-bubble-secondary{
    top: auto;
    bottom: 50px;
    left: -14px;
    right: auto;
    animation-delay: 1.5s;
}

.floating-bubble-secondary::after{
    bottom: -6px;
    left: 10px;
    right: auto;
    border-right: 8px solid transparent;
    border-left: none;
    border-top: 10px solid #fff;
}

/* BUBBLE GABUNGAN */
.floating-bubble-mobile{
    display: none;
}


@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.trust-bar{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 50px 60px 60px 50px; gap: 28px;
}
.trust-title{ font-family: 'Fraunces', serif; font-size: 35px; font-weight: 700; color: var(--coffee); }
.trust-caption{ font-size: 15px; color: var(--merah); max-width: 480px; line-height: 1.6; }

/* VIDEO GALLERY */
.video-gallery{
  background: var(--warna1);
  padding: 60px 40px;
}
.video-gallery .wrap{ max-width:1180px; margin:0 auto; }

.video-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.video-col-stack{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-item{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(78,52,46,0.12);
  background: #000;
  position: relative;
}

.video-poster-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-item video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-tall{ height: 500px; }
.video-col-stack .video-item{ height: 240px; }
.video-gallery .p-eyebrow{ color: var(--kuning); }
.video-gallery .p-eyebrow::before{ background: var(--kuning); }
.video-gallery .p-heading{ color: var(--putih); }
.video-gallery .p-sub{ color: var(--putih); opacity: .85; }

@media (max-width: 860px){
  .video-grid{ grid-template-columns: 1fr; }
  .video-tall{ height: 300px; }
  .video-col-stack .video-item{ height: 220px; }
}

/* ================== TAMPILAN MOBILE VIDEO GALLERY - V2 ================== */
@media (max-width: 768px) {
  .video-gallery {
    padding: 40px 15px;
  }
  .video-gallery .wrap {
    padding: 0 15px 40px;
  }

  .video-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;   /* 1 kolom utama */
    gap: 25px !important;
  }

  /* Video pertama jadi Featured (besar) */
  .video-grid > .video-item:first-child {
    grid-column: 1 / -1;
  }

  /* Stack 2 kolom untuk video lainnya */
  .video-col-stack {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;   /* 2 kolom */
    gap: 20px !important;
  }

  .video-item,
  .video-item.video-tall {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  /* Video proporsional */
  .video-item video,
  .video-item img.video-poster-overlay {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
  }

  .video-item {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    overflow: hidden;
  }
}
/* ============================================
   PORTOFOLIO (PREMIUM EDITION)
   ============================================ */

/* ---------- Intro ---------- */
.p-eyebrow {
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: 13px; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  color: var(--merah2); 
  font-weight: 700; 
  margin-bottom: 20px;
}
.p-eyebrow::before { 
  content: ""; 
  width: 28px; 
  height: 2px; 
  background: var(--merah2); 
}

.p-heading {
  font-family: 'Fraunces', serif; 
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px); 
  line-height: 1.15;
  margin: 0 0 16px; 
  max-width: 650px; 
  color: var(--coffee);
  letter-spacing: -1px;
}
.p-sub {
  max-width: 500px; 
  color: var(--merah2); 
  font-size: 16px; 
  line-height: 1.7;
  margin: 0 0 70px;
  opacity: 0.9; 
}
/*bagian warna portofolio*/
.portfolio-dark{
  background: var(--warna2);
  padding:80px 60px 80px 60px;
  position: relative;
  overflow: hidden;
}
.shelf{
  background: var(--warna3);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 100%;
  box-sizing: border-box;
}
.portfolio-dark{
  background: var(--warna2);
  padding: 50px 85px;
  position: relative;
  overflow: hidden;
}

/* Khusus Layar Mobile (Lebar maksimal 768px) */
@media (max-width: 768px) {
  .portfolio-dark {
    padding: 24px 16px; /* Mengecilkan padding luar agar kartu tidak tertekan */
  }

  .shelf {
    padding: 16px 12px; /* Mengecilkan padding dalam pembungkus kartu */
  }
}

/* ---------- Intro band (merah, full-bleed) ---------- */
.portfolio-intro{
  width:100vw;
  position:relative;
  left:50%;
  transform:translateX(-50%);
  background:var(--putih);
  padding:80px 60px 10px 60px;
  margin: -80px 0 18px; 
  box-sizing:border-box;
}
.portfolio-intro::after{
  content:"";
  position:absolute; right:40px; top:20px;
  width:180px; height:180px;
  background: url('aset/icon/fork-plate-outline.svg') no-repeat center/contain;
  opacity:.06;
  pointer-events:none;
}
.portfolio-intro .wrap{ max-width:1180px; margin:0 auto; }




/* ---------- Intro ---------- */
.p-eyebrow{
  display:flex; align-items:center; gap:10px;
  font-size:12.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--merah2); font-weight:600; margin-bottom:18px;
}
.p-eyebrow::before{ content:""; width:22px; height:1.5px; background:var(--merah2); }

.p-heading{
  font-family:'Fraunces',serif; font-weight:600;
  font-size:clamp(30px,3.6vw,46px); line-height:1.12;
  margin:0 0 14px; max-width:620px; color:var(--merah);
}
.port-highlight{
  color: var(--warna1);
}
.p-sub{
  max-width:460px; color:var(--merah); font-size:15px; line-height:1.7;
  margin:0 0 64px;
}

/* ---------- Shelf (1 kategori) ---------- */
.shelf { 
  margin-bottom: 80px; 
}
.shelf:last-child { 
  margin-bottom: 0; 
}

/* Penyelarasan Header Rak */
.shelf-head {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(240, 237, 237, 0.08);
  padding-bottom: 16px;
  padding: 0 10px;
}
.shelf-title-group { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
}
.shelf-title {
  font-family: 'Fraunces', serif; 
  font-weight: 700; 
  font-size: 24px;
  color: var(--nude); 
  margin: 0;
}

/* Wrapper baru: bungkus track + panah */
.shelf-body {
  position: relative;
  padding: 0 25px;           /* beri ruang simetris untuk arrow */
}
.shelf-body .shelf-track{
  padding-left: 46px;
  padding-right: 46px;
}
.shelf-container {           /* Jika belum ada, tambahkan */
 overflow: hidden;
  border-radius: 12px;
  position: relative;
}
/* Menyejajarkan Tombol Aksi */
/* Arrow lebih simetris */
.arrow-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px; 
  height: 42px; 
  border-radius: 50%;
  border: 1px solid rgba(78, 52, 46, 0.15); 
  background: var(--nude); 
  color: var(--wine);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.arrow-prev { 
  left: -18px;     /* disesuaikan */
}

.arrow-next { 
  right: -18px;    /* disesuaikan */
}

.arrow-btn:hover { 
  border-color: var(--wine); 
  background: var(--wine); 
  color: var(--putih);
  transform: translateY(-50%) scale(1.05);
}

/* Lihat selengkapnya, sekarang di bawah track */
.shelf-footer{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.see-more {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  font-size: 13.5px; 
  font-weight: 600; 
  color: var(--nude);
  text-decoration: none; 
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.see-more:hover { 
  border-bottom-color: var(--brunt-orange); 
  gap: 10px; 
}

/* ---------- Track scroll ---------- */
.shelf-track {
 display: flex; 
  gap: 20px; 
  overflow-x: hidden;        /* lebih ketat */
  scroll-behavior: smooth;
  padding: 12px 0 24px;
  width: 100%;
  margin-left: -15px;
}
.shelf-track::-webkit-scrollbar { 
  display: none; 
}

/* ---------- Kartu Portofolio Baru ---------- */
/* ---------- Kartu Portofolio (UMUM + KHUSUS) ---------- */
.port-card {
  flex: 0 0 240px;        /* Ubah angka ini sesuai keinginan */
  width: 240px;
  max-width: 240px;
  box-sizing: border-box;
  scroll-snap-align: start;
  background: var(--putih); 
  border: none; 
  border-radius: 16px;
  overflow: hidden; 
  cursor: pointer; 
  position: relative;
  box-shadow: 0 8px 24px rgba(78, 52, 46, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Khusus Banner & Menu (supaya ikut besar juga) */
.port-card-banner,
.port-card-menu {
  flex: 0 0 calc((100% - 60px) / 4) !important;
  width: calc((100% - 60px) / 4) !important;
  max-width: calc((100% - 60px) / 4) !important;
    margin-left: 5px;
  
}

/* Media (gambar) */
.port-media {
  aspect-ratio: 1/1; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #FFFFFF; 
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Khusus Banner & Menu (portrait) */
.port-card-banner .port-media,
.port-card-menu .port-media {
  padding: 0;
  aspect-ratio: 3 / 4;
}

.port-card-banner .port-media img,
.port-card-menu .port-media img {
  object-fit: contain;
  background: #f5f5f5;
}
.gallery-grid .port-card {
  width: 100%;
  flex: none;
}
.gallery-grid .port-media {
  aspect-ratio: 1 / 1;
  padding: 20px;
}
.gallery-grid .port-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*UNTUK TAMPILAN HP HALAMAN LOGO, BANNER, MENU, MASKOT*/
@media (max-width: 640px){
    .gallery-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .gallery-grid .port-card{
        width: 100%;
    }
    .gallery-grid .port-info{
        padding: 12px 14px;
    }
    .gallery-grid .port-name{
        font-size: 13px;
    }
    .gallery-grid .port-cat{
        font-size: 11px;
    }
}


/* Animasi Zoom Gambar */
.port-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  display: block; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.port-card:hover .port-media img {
  transform: scale(1.08); /* Gambar membesar lembut */
}

.port-info { 
  padding: 18px 20px; 
  border-top: 1px solid rgba(241, 239, 239, 0.05); 
  background: var(--putih);
  transition: background-color 0.3s ease;
}
.port-card:hover .port-info {
  background-color: #FFFFFF;
}

.port-name { 
  font-family: 'Fraunces', serif; 
  font-weight: 700; 
  font-size: 16px; 
  color: var(--coffee); 
  transition: color 0.3s ease;
}
.port-card:hover .port-name {
  color: var(--brunt-orange); /* Nama berubah warna */
}

.port-cat { 
  font-size: 12px; 
  color: var(--dark-brown); 
  margin-top: 4px; 
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-frame {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.lightbox-media {
  width: 100%;
  max-height: 70vh;
  background: #f8f4ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-info {
  padding: 24px 32px;
  background: white;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(253, 253, 253, 0.795);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--merah2);
  transform: rotate(90deg);
}

/* ==========================================================================
   KODE KHUSUS MOBILE (MAKSIMAL 640px) - TIDAK AKAN MEMPENGARUHI DESKTOP
   ========================================================================== */
@media (max-width: 640px) {
    
    /* --- 1. CAROUSEL HALAMAN UTAMA (INDEX.HTML) --- */
    .shelf {
        padding: 20px 16px !important;
    }

    .shelf-body {
        position: relative !important;
        padding: 0 !important;
    }

    .shelf-container {
        display: block !important;
        overflow: hidden !important;
        width: 100% !important;
        border-radius: 12px !important;
    }

    .shelf-track {
        display: flex !important;
        gap: 12px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        padding: 10px 0 20px 0 !important; 
        margin: 0 !important;
        width: auto !important;
    }

    .shelf-track::-webkit-scrollbar {
        display: none !important;
    }

    /* Hanya kartu di dalam track carousel yang mengecil menjadi 2 kolom */
    .shelf-track .port-card,
    .shelf-track .port-card-banner,
    .shelf-track .port-card-menu {
        flex: 0 0 calc((100% - 12px) / 2) !important;
        width: calc((100% - 12px) / 2) !important;
        max-width: calc((100% - 12px) / 2) !important;
        scroll-snap-align: start !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .shelf-track .port-card-banner .port-media,
    .shelf-track .port-card-menu .port-media {
        padding: 12px !important;
        aspect-ratio: 3 / 4 !important;
    }

    /* Sembunyikan teks info hanya di dalam carousel halaman utama */
    .shelf-track .port-info {
        display: none !important;
    }

    /* Tombol Panah Carousel */
    .arrow-btn {
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        font-size: 14px !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .arrow-prev { left: -12px !important; }
    .arrow-next { right: -12px !important; }

    .shelf-footer {
        display: flex !important;
        justify-content: flex-end !important;
        margin-top: 12px !important;
        width: 100% !important;
    }

    .see-more {
        font-size: 13px !important;
        color: var(--nude) !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        font-weight: 600 !important;
        pointer-events: auto !important;
    }


    /* --- 2. HALAMAN GALERI KOLEKSI (LOGO.HTML, MASKOT.HTML, DLL) --- */
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Pas 2 kolom bersebelahan */
        gap: 16px !important;
        padding: 0 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .gallery-grid .port-card {
        width: 100% !important; /* Kartu memenuhi kolom grid masing-masing */
        max-width: 100% !important;
        flex: none !important;
    }

    /* Mengatur padding agar gambar logo/maskot terlihat sedikit lebih besar */
    .gallery-grid .port-media {
        padding: 12px !important; 
        aspect-ratio: 1 / 1 !important;
    }

    /* Tampilkan kembali teks nama logo/maskot di halaman galeri */
    .gallery-grid .port-info {
        display: block !important; 
        padding: 12px 14px !important;
        background: var(--putih) !important;
    }

    .gallery-grid .port-name {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .gallery-grid .port-cat {
        font-size: 11px !important;
    }
} /* <--- PASTIKAN KURUNG TUTUP INI ADA DI BARIS AKHIR UNTUK MENGUNCI MEDIA QUERY */
/* ============================================
   REVIEW
   ============================================ */
.review-section{ background: var(--putih); padding: 60px 24px 60px; position: relative; overflow: hidden; }
.review-section::before, .review-section::after{ content: ""; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.review-section::before{ width: 380px; height: 380px; background: var(--merah); opacity: 0.18; top: -120px; right: -80px; }
.review-section::after{ width: 260px; height: 260px; background: var(--merah2); opacity: 0.12; bottom: -60px; left: -60px; }

.review-top, .review-container{ position: relative; z-index: 1; }
.review-top{ max-width: 1100px; margin: 0 auto 56px; }

.review-eyebrow{ display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--merah2); font-weight: 600; margin-bottom: 18px; }
.review-eyebrow::before{ content: ""; width: 22px; height: 2px; background: var(--merah2); display: inline-block; }
.review-title{ font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; margin: 0 0 14px; max-width: 640px; color: var(--coffee); }
.review-title em{ font-style: italic; color: var(--merah2); }
.review-subtitle{ max-width: 480px; color: var(--merah); font-size: 15.5px; line-height: 1.6; margin: 0; }

.review-container{ max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; gap: 48px; }
.review-left{ flex: 0 0 270px; position: relative; z-index: 2; }
.review-quote-icon{
  font-family: 'Fraunces', serif; font-size: 34px; line-height: 1; color: var(--merah2);
  margin: 0 0 18px; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(231, 214, 197, 0.5); display: flex; align-items: center; justify-content: center;
}
.review-heading{ font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px, 3vw, 32px); line-height: 1.15; margin: 0 0 32px; color: var(--coffee); }
.review-heading em{ font-style: italic; color: var(--merah2); }

.review-nav{ display: flex; align-items: center; gap: 14px; }
.review-nav button{
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--coffee);
  background: var(--putih); color: var(--coffee); cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 44, 34, 0.08);
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
@media (hover: hover) and (pointer: fine){
.review-nav button:hover:not(:disabled){ background: var(--merah2); border-color: var(--merah2); color: var(--putih); transform: translateY(-2px); }
}
.review-nav button:active:not(:disabled){ background: var(--merah2); border-color: var(--merah2); color: var(--putih); }
.review-nav button:disabled{ opacity: .3; }

.review-progress{ flex: 1; height: 2px; background: var(--bg-beige); border-radius: 2px; position: relative; overflow: hidden; }
.review-progress-bar{ position: absolute; top: 0; left: 0; height: 100%; background: var(--merah2); transition: left .4s ease, width .4s ease; }

.review-viewport{
  flex: 1; min-width: 0; position: relative; overflow-x: auto;
  scroll-behavior: smooth; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.review-viewport::-webkit-scrollbar{ display: none; }
.review-track{ display: flex; gap: 22px; }
.review-card{
  scroll-snap-align: start;
  flex: 0 0 300px; width: 300px; min-height: 250px;
  background: var(--putih); border: 1px solid rgba(2, 44, 34, 0.06); border-radius: 16px;
  padding: 26px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 40px rgba(2, 44, 34, 0.12); }
.review-card::before{
  content: "\201D"; position: absolute; top: -28px; right: 14px;
  font-family: 'Fraunces', serif; font-size: 120px; color: var(--merah); opacity: 0.18;
  pointer-events: none; line-height: 1;
}

.review-stars{ color: var(--star); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.review-text{ font-size: 14.5px; line-height: 1.65; color: var(--merah); margin: 0 0 20px; position: relative; z-index: 1; }
.review-person{ display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.review-avatar{
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coffee), var(--merah2));
  color: var(--putih); font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--putih), 0 0 0 4px rgba(5, 150, 105, 0.25);
}
.review-name{ font-weight: 600; font-size: 13.5px; color: var(--coffee); display: inline-flex; align-items: center; gap: 5px; }
.review-name::after{
  content: "\2713"; width: 14px; height: 14px; border-radius: 50%;
  background: var(--merah2); color: var(--putih); font-size: 8px;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-date{ font-size: 12px; color: var(--merah); opacity: .75; }

  /* ============================================
     STYLE BAGIAN "KENAPA MEMILIH KAMI"
     ============================================ */
  .why-section {
    background: var(--warna1);
    width: 100vw; 
    position: relative; 
    left: 50%; 
    transform: translateX(-50%);
    padding: 60px 40px;
  }

  .why-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--putih);
    border-radius: var(--radius-lg);
    padding: 48px 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  }

  .why-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .why-top-left {
    max-width: 520px;
  }

  .why-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--merah22);
    font-weight: 600;
    margin-bottom: 18px;
  }

  .why-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--grad-black);
    display: inline-block;
  }

  .why-heading {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.15;
    margin: 0;
    color: var(--coffee);
  }

  .why-desc {
    max-width: 340px;
    margin-right: 40px;
    color: var(--maroon);
    font-size: 15.5px;
    line-height: 1.6;
    margin-top: 38px;
    margin-bottom: 0;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .why-item {
    background: var(--putih);
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: box-shadow .25s ease, transform .25s ease;
  }

  .why-item:hover {
    box-shadow: 0 12px 28px rgba(2, 44, 34, 0.08);
    transform: translateY(-3px);
  }

  .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--merah2, #D97706);
    transition: stroke 0.3s ease;
}

/* Efek saat kartu di-hover */
@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

/* Efek hover HANYA untuk perangkat dengan mouse (desktop) */
@media (hover: hover) and (pointer: fine) {
    .why-item:hover .why-icon {
        transform: scale(1.15) rotate(-6deg);
        background: var(--merah2, #D97706);
    }

    .why-item:hover .why-icon svg {
        stroke: #fff;
        animation: iconWiggle 0.5s ease-in-out;
    }
    .why-item:hover .why-icon svg circle[fill] {
      fill: #fff;
  }
}

  .why-item h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--coffee);
  }

  .why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--maroon);
    margin: 0;
  }

  @media (max-width: 860px) {
    .why-card { padding: 40px 28px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .why-top { flex-direction: column; align-items: flex-start; }
    .why-desc { max-width: 100%; }
  }

 @media (max-width: 480px) {
    .why-section { padding: 60px 16px; }
    .why-card { padding: 32px 20px; }
    .why-top {
        margin-bottom: 28px;
    }
    .why-desc {
        margin-top: 16px;
        max-width: 100%;
    }
    .why-heading {
        margin-bottom: 4px;
    }
    .why-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
    .why-item {
      padding: 20px 16px;
    }
    .why-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 16px;
    }
    .why-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--merah2, #D97706);
    }
    .why-item h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }
    .why-item p {
      font-size: 13px;
      line-height: 1.5;
    }
    .why-item {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      column-gap: 16px;
      align-items: start;
    }
    .why-icon {
      grid-column: 1;
      grid-row: 1 / 3;
      width: 60px;
      height: 60px;
      margin-bottom: 0;
    }
    .why-icon svg {
      width: 30px;
      height: 30px;
    }
    .why-toggle {
      grid-column: 2;
      grid-row: 1;
    }
    .why-desc-collapse {
      grid-column: 2;
      grid-row: 2;
    }
    .why-item.is-open .why-icon {
      transform: scale(1.15) rotate(-6deg);
      background: var(--merah2, #D97706);
    }
    .why-item.is-open .why-icon svg {
      stroke: #fff;
      animation: iconWiggle 0.5s ease-in-out;
    }
    .why-item.is-open .why-icon svg circle[fill] {
    fill: #fff;
  }
}
  /* PANAH GESER UNTUK TAMPILAN HP */
  @media (max-width: 480px){
    .why-toggle{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        text-align: left;
    }
    .why-toggle h3{
        margin: 0;
    }
    .why-toggle-icon{
        color: var(--merah2, #D97706);
        font-size: 13px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .why-toggle[aria-expanded="true"] .why-toggle-icon{
        transform: rotate(180deg);
    }
    .why-desc-collapse{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .why-desc-collapse p{
        margin: 10px 0 0;
    }
}

/* Default (desktop): sembunyikan ikon panah */
.why-toggle-icon{
    display: none;
}

/* Mobile: tampilkan lagi */
@media (max-width: 480px){
    .why-toggle-icon{
        display: inline-block;
    }
}

/* ============================================
   CTA & KONSULTASI SECTION
   ============================================ */
.cta-section {
  padding: 60px 60px 90px;
  background: var(--putih);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Efek Cahaya Hijau Mint Lembut di Background */
.cta-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  
  pointer-events: none;
  z-index: 0;
}

.cta-left {
  flex: 1 1 480px;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--merah2);
}
.cta-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--merah2);
  display: inline-block;
}

.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--coffee);
}

.cta-desc {
  font-size: 15px;
  color: var(--coffee);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 580px;
}

.cta-action-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: var(--putih);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 38px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(73, 209, 73, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s;
  cursor: pointer;
}

.btn-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background: #EF4444;
  color: var(--putih);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.cta-badge-text {
  font-size: 15px;
  color: var(--coffee);
  opacity: 0.8;
}

.cta-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta-right {
  flex: 1 1 320px;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

/* Statistik */
.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--coffee);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--merah);
}

/* Disclaimer sekarang jadi card */
.cta-disclaimer {
  background: var(--putih);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.disclaimer-toggle {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--coffee);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.disclaimer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  text-align: left;
}

.disclaimer-content p {
  font-size: 13px;
  color: var(--merah);
  line-height: 1.6;
  margin: 14px 0 0 0;
}

.disclaimer-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.toggle-icon {
  transition: transform 0.3s ease;
  color: var(--merah);
}

@media (max-width: 860px) {
  .cta-section {
    flex-direction: column;
    padding: 40px 24px 70px;
  }
  .cta-right {
    max-width: 100%;
  }
}

/* KHUSUS TAMPILAN HP KONSULTASI*/
.cta-spacer{
    height: 40px;
}

@media (max-width: 480px){
    .cta-spacer{
        height: 20px;
    }
    .cta-section{
        gap: 16px;
        padding: 32px 20px 50px;
        justify-content: flex-start;
    }
    .cta-left{
        flex: none;
    }
    .cta-right{
        flex: none;
    }
    .cta-content{
        gap: 14px;
    }
    .cta-stats{
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}



/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background: var(--grad-red-dark);
  padding: 70px 24px 0;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-container{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand{
  flex: 1 1 380px;
  max-width: 460px;
}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.logo-icon-footer span{
  background: var(--maroon);
}

.footer-brand-name{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--putih);
  margin: 0;
}

.footer-brand-tagline{
  font-size: 13px;
  color: var(--star);
  margin: 2px 0 0;
}

.footer-desc{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  max-width: 400px;
}

.btn-footer-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--putih);
  color: var(--coffee);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-footer-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.footer-contact{
  flex: 0 0 220px;
}

.footer-heading{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--putih);
  margin: 0 0 18px;
}

.footer-contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color .2s ease;
}

.footer-contact-item:hover{
  color: var(--star);
}

.footer-contact-item i{
  color: var(--star);
  width: 16px;
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--putih);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease;
}

.footer-social a:hover{
  background: var(--star);
}

.footer-bottom{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p{
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 640px){
  .site-footer{
    padding: 40px 20px 0; /* sebelumnya 70px 24px 0 */
  }
  .footer-container{
    flex-direction: column;
    gap: 24px;           /* sebelumnya 40px */
    padding-bottom: 30px; /* sebelumnya 50px */
  }
  .footer-brand{
    flex: none;
    max-width: 100%;
  }
  .footer-contact{
    flex: none;
  }
  .footer-bottom{
    padding: 16px 0;      /* sebelumnya 24px 0 */
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px){
  .navbar-toggle{ display: block; margin-left: auto; margin-right: -8px; }
  .navbar-right{ display: none; }
  .navbar-center{
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: auto;
    width: 220px;
    background: var(--putih);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height .3s ease, opacity .25s ease, transform .25s ease;
}
.navbar-center.is-open{
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.navbar-center a{
    color: var(--coffee);
    padding: 12px 14px;
    width: 100%;
    border-radius: 10px;
    border-bottom: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background .2s ease, color .2s ease;
}
.navbar-center a i{
    width: 18px;
    text-align: center;
    color: var(--merah2);
    font-size: 14px;
}
.navbar-center a:hover,
.navbar-center a:active{
    background: var(--merah3, #fdeded);
    color: var(--merah2);
}
.hero{ display: flex; flex-direction: column; padding: 40px 24px; }
.hero-left{ display: contents; }
.hero-title{ font-size: 44px; margin-top: 40px; }
.hero-right{ order: 1; margin-top: 40px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.media-wrapper{ max-width: 100%; }

.trust-title{ font-size: 30px; }

.portfolio-intro { padding-left: 30px; /* perkecil sesuai kebutuhan */ padding-top: 110px;}

.review-container{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px; /* JARAK IKON, JUDUL, DAN KOTAK REVIEW TAMPILAN MOBILE */
}
.review-left{ display: contents; }
.review-nav{ display: contents; }
.review-progress{ width:180px;/* UBAH PANJANG GARIS INDIKATOR SESUAI KEBUTUHAN */ margin:16px auto 0; }

.review-quote-icon{ grid-row: 1; grid-column: 1; margin-bottom: 0; }
.review-heading{ grid-row: 2; grid-column: 1; margin-bottom: 0; }

/* viewport, tombol prev, dan tombol next sengaja ditaruh di grid-row/column YANG SAMA supaya saling menimpa */
.review-viewport{ grid-row: 3; grid-column: 1; width: 100%; }
#reviewPrevBtn{
  grid-row: 3; grid-column: 1;
  justify-self: start; align-self: center;
  margin-left: -8px;
  z-index: 3;
}
#reviewNextBtn{
  grid-row: 3; grid-column: 1;
  justify-self: end; align-self: center;
  margin-right: -8px;
  z-index: 3;
}

.review-progress{ grid-row: 4; grid-column: 1; margin-top: 6px;}

.review-card{ flex: 0 0 100%; width: 100%; padding: 20px 46px; }

.cta-section{ padding-left: 30px; }
.site-footer{ padding-left: 25px; }

.dashboard{ padding: 0; background: transparent; box-shadow: none; border-radius: 0; width: 100%; }
.hero{ margin: 0; border-radius: 0;  }

/* GABUNG 2 BUBBLE PADA MOBILE */
.floating-bubble:not(.floating-bubble-mobile){ display: none; }
.floating-bubble-mobile{ display: flex; flex-direction: column; align-items: flex-start; gap: 6px; top: auto; bottom: 160px; left: -8px; right: auto; animation: none; }
.floating-bubble-mobile-item{ display: flex; align-items: center; gap: 6px; }

/* TOMBOL PESAN SEKARANG DI BAWAH MOCKUP */
.hero-actions{ display: none; }
.hero-actions-mobile{ display: flex; justify-content: center; margin-top: 24px; order:2; }
}

@media (max-width:767px){
.floating-bubble:not(.floating-bubble-mobile){ display:none; }
.floating-bubble-mobile{ display:flex; }
}

@media (min-width:768px) and (max-width:900px){
.floating-bubble{ display:flex; }
.floating-bubble-secondary{ display:flex; }
.floating-bubble-mobile{ display:none; }
}


@media (max-width: 480px){
  .hero-title{ font-size: 36px; }
  .navbar{ padding: 18px 20px; width: 100%; }
  .dashboard{ width: calc(100% - 24px); }
  .hero{ margin: 0; border-radius: 0; }
  .dashboard{ padding: 0; background: transparent; box-shadow: none; border-radius: 0; width: 100%; margin-top: 28px; /* sesuaikan dengan tinggi navbar */ }
}

@media (max-width: 640px){
  .feature-card{
    flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
  }
}

@media (min-width: 641px) and (max-width: 900px){
  .feature-card{
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
}