/* ==============================
   IMPORT FONT
============================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ==============================
   RESET DASAR
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==============================
   BODY
============================== */
body {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    background: #0f172a; /* dark base (navy) */
    color: #e5e7eb;
}

/* ==============================
   SECTION POSTER (MYSTIC ROYAL BLUE)
============================== */
.poster {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 80px 20px;

    /* Mystic Royal Blue Gradient */
    background: linear-gradient(
        135deg,
        #0f172a,  /* deep navy */
        #1e293b,  /* slate blue */
        #1e3a8a   /* royal blue */
    );

    color: #ffffff;
}

/* ==============================
   CONTAINER
============================== */
.poster .container {
    max-width: 720px;
    width: 100%;
}

/* ==============================
   JUDUL
============================== */
.poster .judul {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* ==============================
   DESKRIPSI
============================== */
.poster .description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 45px;
    line-height: 1.7;
    color: black;
}

/* ==============================
   TOMBOL MODERN (ROYAL ACCENT)
============================== */
.btn-pesan-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 16px 40px;
    background: linear-gradient(
        135deg,
        #2563eb, /* royal blue */
        #1d4ed8  /* deep blue */
    );

    color: black;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;

    border-radius: 999px;
    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Shine Effect */
.btn-pesan-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-25deg);
    transition: 0.6s ease;
}

.btn-pesan-modern:hover::after {
    left: 130%;
}

/* Hover */
.btn-pesan-modern:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.6);
}

/* Active */
.btn-pesan-modern:active {
    transform: scale(0.98);
}
/* ==============================
   SECTION POSTER INFO
============================== */
.poster-info {
    padding: 100px 20px;
    background: #f8fafc;
    color: #0f172a;
}

/* Container */
.poster-info .container {
    max-width: 1100px;
    margin: auto;
}

/* Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1e3a8a;
}

/* Intro text */
.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}

/* Grid */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.description {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

/* Hover effect */
.description:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

/* Card title */
.description h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1d4ed8;
}

/* Card text */
.description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}
/* ==============================
   SECTION KEUNGGULAN JASA
============================== */
.service-advantage {
    padding: 100px 20px;
    background: #ffffff;
    color: #0f172a;
}

/* Container */
.service-advantage .container {
    max-width: 1100px;
    margin: auto;
}

/* Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.advantage-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

/* Hover */
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

/* Title */
.advantage-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1d4ed8;
}

/* Text */
.advantage-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}
/* ===== SERVICE PACKAGE ===== */
.service-package {
  padding: 100px 20px;
  background: #f4f6fb;
  font-family: 'Poppins', sans-serif;
}

.service-package .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
}

/* GRID */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD BASE */
.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.package-card .price {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0 25px;
}

/* LIST */
.package-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.package-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6e48aa;
  font-weight: bold;
}

/* BUTTON */
.btn-package {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== PIXELLAB (LEBIH MURAH) ===== */
.package-card.pixellab {
  border: 2px solid #e0e0e0;
}

.package-card.pixellab h3 {
  color: #444;
}

.package-card.pixellab .price {
  color: #333;
}

.package-card.pixellab .btn-package {
  background: #333;
  color: #fff;
}

.package-card.pixellab .btn-package:hover {
  background: #000;
}

/* ===== CANVA (PREMIUM / MYSTIC) ===== */
.package-card.canva {
  background: linear-gradient(135deg, #9d50bb, #6e48aa);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.package-card.canva::before {
  content: "BEST VALUE";
  position: absolute;
  top: 20px;
  right: -45px;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 50px;
  transform: rotate(45deg);
}

.package-card.canva h3,
.package-card.canva .price {
  color: #fff;
}

.package-card.canva ul li::before {
  color: #ffdd57;
}

.package-card.canva .btn-package {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
}

.package-card.canva .btn-package:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.footer {
  background-color: #0F172A   /* Tailwind navy */; /* navy gelap elegan */
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1EA0FF;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section a {
  display: block;
  color: #cfe8ff;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.7;.footer-bottom {
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom .brand {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
}
@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: calc(70px + 10vh); /* HP kecil miring aman */
  }
}
.wa-icon {
  width: 44px;
  height: 44px;
  background: #25D366;     /* HIJAU WA */
  border-radius: 50%;      /* BUAT BULAT */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-wa {
  width: 22px;
  height: 22px;
  fill: #fff;              /* LOGO PUTIH */
}

.wa-icon:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom strong {
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}