/* =========================
   GLOBAL
========================= */

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body{
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1f2937;
  overflow-x: hidden;
  background: #fff;
}

/* =========================
   HEADING PREMIUM
========================= */

h1,
h2,
h3,
.logo-font{
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* =========================
   IMAGE
========================= */

img{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   BUTTON & LINK
========================= */

button,
a{
  transition: all 0.3s ease;
}

/* =========================
   FILTER BUTTON
========================= */

.btn-filter{
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-filter:hover{
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-filter.active{
  background: #000;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   SEARCH BOX
========================= */

.search-box input{
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus{
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

/* =========================
   CARD
========================= */

.hover-card{
  transition: all 0.3s ease;
}

.hover-card:hover{
  transform: translateY(-5px);
}

/* CARD TEMA */

.card-tema{
  overflow: hidden;
  border-radius: 20px;
}

.card-tema img{
  aspect-ratio: 9/16;
  border-radius: 20px;
}

/* =========================
   KATALOG GRID
========================= */

#katalog{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

  #katalog{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  #katalog{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .card-tema{
    border-radius: 14px;
  }

  .card-tema img{
    border-radius: 14px;
  }

  .card-tema h3{
    font-size: 12px;
    line-height: 1.3;
    margin-top: 6px;
  }

  .btn-filter{
    padding: 8px 14px;
    font-size: 12px;
  }

  .search-box input{
    padding: 12px 14px;
    font-size: 14px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

  #katalog{
    gap: 8px;
  }

  .card-tema h3{
    font-size: 11px;
  }

}
/* =========================
   PORTO GRID
========================= */

#portoList{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* Laptop */
@media (max-width: 1200px){

  #portoList{
    grid-template-columns: repeat(5, 1fr);
  }

}

/* Mobile */
@media (max-width: 768px){

  #portoList{
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

}
/* =========================
   SECTION PAKET
========================= */

#paket{
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(circle at top right, rgba(250,204,21,0.08), transparent 25%),
    radial-gradient(circle at bottom left, rgba(0,0,0,0.05), transparent 30%),
    #fafafa;
  overflow: hidden;
}

/* TITLE */

#paket h2{
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -1px;
}

#paket p{
  font-size: 17px;
}

/* GRID */

#paket .grid{
  margin-top: 30px;
}

/* CARD */

.paket-card{
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  transition: all .45s ease;
  backdrop-filter: blur(14px);
}

.paket-card:hover{
  transform: translateY(-12px);
}

/* BASIC & PRIORITAS */

.paket-card.white-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* PREMIUM */

.paket-card.active{
  background:
    linear-gradient(135deg,#0f0f0f,#1f1f1f);
  border: 1px solid rgba(250,204,21,0.25);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.35);

  transform: scale(1.06);
}

/* GLOW */

.paket-card.active::before{
  content: "";
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(circle, rgba(250,204,21,0.15), transparent 60%);
  z-index: 0;
}

/* BADGE */

.best-badge{
  position: absolute;
  top: 22px;
  right: -42px;
  background: #facc15;
  color: #000;
  padding: 9px 48px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 30;
  box-shadow: 0 10px 20px rgba(250,204,21,0.3);
}

/* PRICE */

.paket-price{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.paket-price small{
  color: #9ca3af;
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 500;
}

.paket-price span{
  font-size: clamp(48px,5vw,68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

/* PREMIUM PRICE */

.paket-card.active .paket-price span{
  color: #facc15;
}

/* LIST */

.paket-list{
  margin-top: 35px;
}

.paket-list li{
  transition: .3s ease;
}

.paket-list li:hover{
  transform: translateX(5px);
}

/* BUTTON */

.paket-btn{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  font-weight: 700;
  transition: .35s ease;
}

.paket-btn:hover{
  transform: scale(1.04);
}

.paket-btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.18);
  transition: .5s;
}

.paket-btn:hover::before{
  left: 120%;
}

/* PREMIUM BUTTON */

.active-btn{
  background: #facc15 !important;
  color: #000 !important;
}

/* MOBILE */

@media(max-width:768px){

  #paket{
    padding: 90px 16px;
  }

  .paket-card.active{
    transform: scale(1);
  }

  #paket h2{
    font-size: 42px;
  }

}

/* =========================
   HERO PHONE
========================= */

@keyframes float {
  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(-12px);
  }

  100%{
    transform: translateY(0);
  }
}

.animate-float{
  animation: float 4s ease-in-out infinite;
}

.hero-phone{
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

.hero-glow{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(251,191,36,.25), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

/* Mobile */
@media(max-width:768px){

  .hero-phone{
    width: 260px !important;
    margin: 40px auto 0;
  }

}
