/* Reset dan dasar */
:root {
      --bg:#0f172a; /* slate-900 */
      --card:#111827; /* gray-900 */
      --muted:#94a3b8; /* slate-400 */
      --text:#e5e7eb; /* gray-200 */
      --brand:#22d3ee; /* cyan-400 */
      --brand-2:#38bdf8; /* sky-400 */
      --ring:rgba(56,189,248,.35);
    }
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar container */
.navbar {
  background: #12315a;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Nunito',sans-serif; /* font tebal modern */
}

/* Container */
.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  justify-content: space-between;
}

/* Logo / Judul */
.navbar-brand img {
  height: 56px; /* diperbesar */
  width: auto;
  display: block;
}

/* Toggle button (mobile) */
.navbar-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  user-select: none;
  color: white; /* tombol toggle juga putih */
}

/* Menu */
.navbar-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* Link dasar */
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700; /* lebih berisi */
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 28px;
  color: white; /* teks putih */
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

/* Ikon material */
.material-icons {
  font-size: 20px;
  color: white; /* ikon juga putih */
}

/* Efek hover dan active dengan warna-warni */
.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  color: white;
  animation: colorPulse 1.5s infinite;
  background: linear-gradient(
    45deg,
    #ff6b6b,
    #f06595,
    #cc5de8,
    #845ef7,
    #5c7cfa,
    #339af0,
    #22b8cf,
    #20c997,
    #51cf66,
    #94d82d,
    #fcc419,
    #ff922b,
    #ff6b6b
  );
  background-size: 300% 300%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
}

/* Animasi warna pulsing */
@keyframes colorPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive - tampilan mobile */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-nav {
    position: fixed;
    top: 56px;
    right: 0;
    background: rgba(255, 255, 255, 0.95); /* transparan tipis */
    height: calc(100vh - 56px);
    width: 250px;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -3px 0 10px rgb(0 0 0 / 0.1);
    overflow-y: auto;
    backdrop-filter: blur(5px);
  }

  .navbar-nav.open {
    transform: translateX(0);
  }

  .navbar-nav li {
    margin-bottom: 0.75rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 12px;
    color: #3b0f8d; /* warna teks mobile bisa diganti agar kontras dengan background putih */
  }

  .material-icons {
    color: #3b0f8d; /* ikon mobile agar terlihat */
  }
}






/* =========================
   Hero Section Dasar
   ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4); /* lebih ringan */
  background: url('/static/image/foto56f.png') no-repeat center center;
  background-size: cover; /* full screen, proporsional */
  padding-left: 80px;
  box-sizing: border-box;
}

/* Konten Hero */
.hero-content {
  max-width: 500px;
  text-align: left;
  background: rgba(0,0,0,0.3); /* overlay ringan biar teks terbaca */
  padding: 20px;
  border-radius: 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.5rem); /* medium, menonjol */
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Tombol Hero */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  box-shadow: 0 6px 15px rgba(37,117,252,0.6);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  box-shadow: 0 8px 20px rgba(106,17,203,0.8);
}

.btn-secondary {
  background: #fff;
  color: #333;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #f0f0f0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .hero {
    padding-left: 50px;
    height: 75vh;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
  .hero-content p {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 20px;
    height: 65vh;
  }
  .hero-content {
    max-width: 90%;
    text-align: center;
    padding: 15px;
  }
  .hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  .hero-content p {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 55vh;
    padding: 15px;
  }
  .hero-content h1 {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
  }
  .hero-content p {
    font-size: clamp(0.8rem, 3vw, 0.9rem);
  }
  .hero-content .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}


/* ===========================
   SECTION ABOUT ME
=========================== */
#about {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  overflow: hidden;
  perspective: 1000px;
}

.about-flex {
  max-width: 1100px; /* diperlebar sedikit untuk laptop */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* supaya responsive */
  justify-content: center;
}

/* Gambar di kiri */
.about-flex img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.about-flex img:hover,
.about-flex img:focus {
  transform: translateY(-15px) rotate(-3deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  outline: none;
}

/* Teks di kanan */
.about-text {
  flex: 1;
  min-width: 280px;
  opacity: 1;
  transition: opacity 0.4s ease, max-height 0.5s ease;
  max-height: 2000px;
  overflow: hidden;
  padding: 0 20px;
}

.about-text.hidden {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  user-select: none;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #111;
  user-select: none;
  letter-spacing: 1.2px;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  color: #333;
  user-select: text;
  text-align: justify;
}

/* Styling list */
.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.about-list li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 28px; /* ruang untuk ikon */
  position: relative;
  text-align: left;
}

.about-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-flex img {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
  }

  .about-text {
    padding: 0 15px;
  }

  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 1rem;
    max-width: 95%;
    margin: 0 auto 1.2rem auto;
  }

  .about-list {
    display: inline-block; /* biar tetap rapi di tengah */
    margin: 0 auto;
    text-align: left;
  }

  .about-list li {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Perluasan gambar untuk layar laptop/desktop */
@media (min-width: 1024px) {
  .about-flex img {
    width: 380px;
    height: 380px;
  }
  .about-flex {
    gap: 50px;
  }
}


/* ===========================
   SECTION WHY HIRE
=========================== */
#why {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#why .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#why h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: 1.3px;
  user-select: none;
}

#why .row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#why .card {
  background-color: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 320px;
  padding: 25px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

#why .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

#why .card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

#why .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  user-select: text;
}

@media (max-width: 768px) {
  #why .row {
    flex-direction: column;
    gap: 25px;
  }
  #why .card {
    max-width: 100%;
  }
}

/* ===========================
   SECTION ALASAN MAHAL
=========================== */
#alasan-mahal {
  background-color: #fefefe;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#alasan-mahal .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#alasan-mahal .container.visible {
  opacity: 1;
  transform: translateY(0);
}

#alasan-mahal h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
  user-select: none;
}

#alasan-mahal h2 i {
  font-size: 2.8rem;
  color: #ff7f50;
}

#alasan-mahal p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #444;
  user-select: text;
}

#alasan-mahal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

#alasan-mahal ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  user-select: text;
}

#alasan-mahal ul li i {
  color: #ff7f50;
  font-size: 1.4rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  #alasan-mahal h2 {
    font-size: 2rem;
  }
  #alasan-mahal h2 i {
    font-size: 2.2rem;
  }
  #alasan-mahal p,
  #alasan-mahal ul li {
    font-size: 1rem;
  }
}

/* ===========================
   SECTION KENAPA WEBSITE
=========================== */
#kenapa-website {
  background-color: #f7fafc;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#kenapa-website .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

#kenapa-website h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
  user-select: none;
}

#kenapa-website h2 i {
  font-size: 2.8rem;
  color: #4a90e2;
}

#kenapa-website ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

#kenapa-website ul li {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #444;
  user-select: text;
}

#kenapa-website ul li i {
  color: #4a90e2;
  font-size: 1.5rem;
  flex-shrink: 0;
}

#kenapa-website p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #555;
  user-select: text;
  max-width: 680px;
}

@media (max-width: 600px) {
  #kenapa-website h2 {
    font-size: 2rem;
  }
  #kenapa-website h2 i {
    font-size: 2.4rem;
  }
  #kenapa-website ul li {
    font-size: 1rem;
  }
  #kenapa-website ul li i {
    font-size: 1.3rem;
  }
  #kenapa-website p {
    font-size: 1rem;
  }
}

/* ===========================
   SECTION PROSES KERJA
=========================== */
#proses-kerja {
  background-color: #f0f4f8;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#proses-kerja .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

#proses-kerja h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
  user-select: none;
}

#proses-kerja h2 i {
  font-size: 2.8rem;
  color: #27ae60;
}

#proses-kerja ol {
  padding-left: 20px;
  margin-bottom: 25px;
  counter-reset: step-counter;
}

#proses-kerja ol li {
  position: relative;
  font-size: 1.15rem;
  margin-bottom: 18px;
  padding-left: 50px;
  cursor: pointer;
  user-select: text;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #444;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#proses-kerja ol li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #27ae60;
  color: white;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
}

#proses-kerja ol li i {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #27ae60;
}

#proses-kerja ol li:active,
#proses-kerja ol li:focus-visible {
  background-color: #27ae60;
  color: white;
  outline: none;
  border-radius: 8px;
}

#proses-kerja ol li:active i,
#proses-kerja ol li:focus-visible i {
  color: white;
}

#proses-kerja p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #555;
  user-select: text;
  max-width: 680px;
}

@media (max-width: 600px) {
  #proses-kerja h2 {
    font-size: 2rem;
  }
  #proses-kerja h2 i {
    font-size: 2.4rem;
  }
  #proses-kerja ol li {
    font-size: 1rem;
    padding-left: 45px;
    margin-bottom: 14px;
  }
  #proses-kerja ol li::before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 0.9rem;
    left: 8px;
  }
  #proses-kerja ol li i {
    font-size: 1.2rem;
  }
  #proses-kerja p {
    font-size: 1rem;
  }
}



/*section project*/
/* Projects Section */
#projects {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  user-select: none;
}

#projects .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#projects h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

#projects .row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#projects .card.project-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex: 1 1 300px;
  max-width: 320px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#projects .card.project-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  transform: translateY(-8px);
}

#projects .card.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 1s ease;
}

#projects .card.project-card img:hover {
  transform: rotate(10deg) scale(1.05);
}

#projects .card-body {
  padding: 20px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#projects .card-body h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

#projects .card-body p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  #projects .row {
    flex-direction: column;
    gap: 25px;
  }
  #projects .card.project-card {
    max-width: 100%;
  }
  #projects .card.project-card img {
    height: 220px;
  }
}


/* Stats Section */
#stats {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#stats .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#stats h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  user-select: none;
}

/* Row flexbox */
#stats .row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card style */
#stats .card.project-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 280px;
  padding: 40px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

/* Hover effect */
#stats .card.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Number big and bold */
#stats .card-body h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #4a90e2;
  user-select: text;
}

/* Description */
#stats .card-body p {
  font-size: 1.2rem;
  color: #444;
  user-select: text;
}

/* Responsive */
@media (max-width: 768px) {
  #stats .row {
    flex-direction: column;
    gap: 25px;
  }
  #stats .card.project-card {
    max-width: 100%;
  }
  #stats .card-body h1 {
    font-size: 3.5rem;
  }
  #stats .card-body p {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  #stats h2 {
    font-size: 2rem;
  }
  #stats .card-body h1 {
    font-size: 3rem;
  }
  #stats .card-body p {
    font-size: 1rem;
  }
}

/*section my sevrices*/
#services {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#services .container {
  max-width: 900px;
  margin: 0 auto;
}

#services h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #111;
  user-select: none;
}

/* Baris flexbox untuk kartu service */
#services .row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card Service flexbox */
#services .card.project-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: box-shadow 0.3s ease;
}

/* Hover efek */
#services .card.project-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* Gambar di kiri */
#services .card.project-card img {
  width: 200px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Hover gambar sedikit membesar */
#services .card.project-card img:hover {
  transform: scale(1.05);
}

/* Konten teks di kanan */
#services .card-body {
  flex: 1;
  padding: 25px 30px;
  display: none; /* awalnya tersembunyi */
  flex-direction: column;
  justify-content: center;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: opacity 0.4s ease;
}

/* Teks terbuka (visible) */
#services .card-body.active {
  display: flex;
}

/* Judul service */
#services .card-body h4 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
}

/* Responsive - layout vertikal di layar kecil */
@media (max-width: 768px) {
  #services .row {
    gap: 30px;
  }
  #services .card.project-card {
    flex-direction: column;
  }
  #services .card.project-card img {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  #services .card-body {
    display: block !important; /* selalu tampil di mobile */
    padding: 20px;
  }
}

/*section price list*/
/* Price List Section */
#PriceList {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

#PriceList .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#PriceList h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  user-select: none;
}

/* Grid untuk kartu paket */
#PriceList .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Kartu paket */
#PriceList .card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Hover efek kartu */
#PriceList .card:hover {
  box-shadow: 0 20px 45px rgb(0 0 0 / 0.15);
}

/* Styling untuk details */
#PriceList details {
  cursor: pointer;
  user-select: none;
}

/* Summary styling */
#PriceList summary {
  list-style: none;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 1.15rem;
  border-bottom: 1px solid #eee;
  outline: none;
  transition: background-color 0.3s ease;
  color: #222;
}

/* Summary hover & focus */
#PriceList summary:hover,
#PriceList summary:focus {
  background-color: #f0f4ff;
  color: #4a90e2;
  outline: none;
}

/* Hilangkan tanda disclosure default */
#PriceList summary::-webkit-details-marker {
  display: none;
}

/* Card summary container */
#PriceList .card-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Gambar ringkas di summary */
#PriceList .card-summary img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Zoom sedikit saat hover gambar */
#PriceList summary:hover img {
  transform: scale(1.05);
}

/* Text ringkas di summary */
#PriceList .card-text {
  text-align: left;
  flex-grow: 1;
}

/* Judul paket */
#PriceList .card-text h5 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

/* Deskripsi singkat */
#PriceList .card-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Detail paket (konten tersembunyi) */
#PriceList .card-detail {
  padding: 20px 25px;
  text-align: left;
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease forwards;
}

/* Gambar detail */
#PriceList .card-detail img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}

/* Daftar fitur */
#PriceList .card-detail ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style-type: none;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
#PriceList .card-detail ul li {
  position: relative;
  padding-left: 28px; /* jarak untuk centang */
  margin-bottom: 10px;
}

#PriceList .card-detail ul li::before {
  content: "✓"; /* tanda centang */
  position: absolute;
  left: 0;
  top: 0;
  color: #222; /* netral, bukan hijau */
  font-weight: bold;
}
/* Harga normal dan promo */
#PriceList .card-detail p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
}

#PriceList .card-detail p strong {
  color: #4a90e2;
}

/* Corection line-through style */
#PriceList .card-detail p span {
  color: #999;
  font-weight: 500;
}

/* Animasi fadeIn */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Responsive */
@media (max-width: 768px) {
  #PriceList .card-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  #PriceList .card-summary img {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    margin-bottom: 12px;
  }
  #PriceList summary {
    flex-direction: column;
    align-items: flex-start;
  }
  #PriceList .card-detail img {
    max-height: 180px;
  }
}

/*section testimoni*/
/* Testimonials Section */
#testimonials {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  overflow: hidden;
}

#testimonials .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#testimonials h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  user-select: none;
}

/* Row sebagai slider container */
#testimonials .row {
  position: relative;
  height: 180px;
}

/* Sembunyikan semua testimonial */
#testimonials .testimonial {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-style: italic;
  color: #444;
  padding: 0 20px;
  font-size: 1.15rem;
  user-select: text;
}

/* Testimonial yang aktif */
#testimonials .testimonial.active {
  opacity: 1;
  position: relative;
}

/* Nama pengomentar */
#testimonials .testimonial h5 {
  margin-top: 15px;
  font-weight: 600;
  font-style: normal;
  color: #222;
}

/* Animasi otomatis dengan keyframe (fallback) */
@keyframes fadeInOut {
  0%, 20% { opacity: 0; }
  30%, 70% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 600px) {
  #testimonials .row {
    height: auto;
  }
  #testimonials .testimonial {
    position: relative;
    opacity: 1 !important;
    margin-bottom: 30px;
  }
}

/* ===== Skills Section ===== */
#skills {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

#skills h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

#skills h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: #00bcd4;
    margin: 10px auto 0;
    border-radius: 2px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill-item {
    background: #2c2c2c;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: default;
}

.skill-item:hover {
    background: #00bcd4;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
}

/* ===== Animasi muncul saat scroll ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-item.visible {
    animation: fadeInUp 0.6s forwards;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .skills-list {
        gap: 15px;
    }

    .skill-item {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    #skills h2 {
        font-size: 2rem;
    }

    .skill-item {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}



/*section skilll*/
.skills {
  background-color: #fffafa;
  color: #eee;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  max-width: 800px;
  margin: 0 auto 80px auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.3);
  text-align: center;
}

.skills h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #4a90e2;
  user-select: none;
}

.skills h2 span.material-icons {
  vertical-align: middle;
  font-size: 3.2rem;
  margin-left: 8px;
  color: #4a90e2;
}

.other-skills h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #79b8ff;
  user-select: none;
}

.other-skills h3 span.material-icons {
  font-size: 2.4rem;
  color: #4a90e2;
  transition: transform 0.3s ease;
}

.other-skills h3:hover span.material-icons {
  transform: rotate(20deg);
}

.other-skills ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
  text-align: left;
}

.other-skills ul li {
  font-size: 1.15rem;
  padding: 12px 15px;
  margin-bottom: 16px;
  background: #2c2c2c;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: text;
  color: #ccc;
}

.other-skills ul li span.material-icons {
  color: #4a90e2;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.other-skills ul li:hover {
  background-color: #4a90e2;
  color: white;
  box-shadow: 0 8px 25px rgb(74 144 226 / 0.7);
}

.other-skills ul li:hover span.material-icons {
  color: white;
}

/* Responsive */
@media (max-width: 480px) {
  .skills {
    padding: 40px 15px;
  }
  .skills h2 {
    font-size: 2.4rem;
  }
  .other-skills h3 {
    font-size: 1.5rem;
    gap: 8px;
  }
  .other-skills ul {
    max-width: 100%;
  }
  .other-skills ul li {
    font-size: 1.05rem;
    padding: 10px 12px;
  }
  .other-skills ul li span.material-icons {
    font-size: 1.6rem;
  }
}




/* section wa */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  user-select: none;
}

/* Hover effect */
.whatsapp-float:hover {
  background-color: #1ebe57;
  box-shadow: 0 10px 30px rgba(30, 190, 87, 0.7);
  transform: scale(1.05);
}

/* Icon image */
.whatsapp-float img {
  width: 24px;
  height: 24px;
  border-radius: 50%;      /* bikin ikon bulat */
  object-fit: cover;
}

/* Responsive */
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}


/* Section Tech Stack */
.tech-stack {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.tech-stack h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.tech-stack p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.icon-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 140px;
  text-align: center;
}

.icon-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.icon-card span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Efek hover animasi "terbang" */
.icon-card:hover {
  transform: translateY(-20px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.icon-card:hover img {
  transform: rotate(-10deg) translateY(-5px);
}


/* ===== FOOTER WRAPPER ===== */
.footer {
  background: #f7f7f7;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ddd;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* ===== FOOTER LINKS (SITEMAP) ===== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 80px; /* jarak antar kolom */
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #000;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #d10000;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  max-width: 320px;
}

.newsletter h4 {
  font-size: 17px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #000;
}

.newsletter-form {
  display: flex;
  margin-bottom: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.newsletter-form button {
  background: #d10000;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter label {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ===== FOOTER HOURS ===== */
/* ===== FOOTER HOURS ===== */
.footer-hours {
  max-width: 250px;
  margin-left: 40px; /* geser dikit ke kanan */
}

.footer-hours h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #000;
}

.footer-hours p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.footer-image {
  text-align: center; /* biar judul dan gambar rata tengah */
}

.footer-image h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px; /* tambah jarak judul ke gambar */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-image img {
  max-width: 300px; /* bisa disesuaikan */
  height: auto;
  border-radius: 15px; /* bikin sudut melengkung */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* efek bayangan biar modern */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-image a:hover img {
  transform: scale(1.05); /* zoom halus pas hover */
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* bayangan lebih tebal pas hover */
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.footer-bottom .social {
  margin-bottom: 10px;
}

.footer-bottom .social a {
  margin: 0 8px;
  font-size: 18px;
  color: #4b4747;
  transition: color 0.3s;
}

.footer-bottom .social a:hover {
  color: #d10000;
}

.footer-bottom p {
  font-size: 14px;
  margin-top: 8px;
  color: #555;
}

/* ===== TAMPILAN DESKTOP (Laptop/layar lebar) ===== */
@media (min-width: 992px) {
  .footer-container {
    justify-content: space-between;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .social,
  .footer-bottom p {
    display: block;
    margin: 0 auto;
  }
}

/* Responsive */ @media (max-width: 768px) { .footer-container { flex-direction: column; gap: 30px; } .footer-links { gap: 30px; } }


/* Performance Section */
#web-performance {
  background: linear-gradient(135deg, #f5f7fa, #e0e7ff);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

#web-performance h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

#web-performance p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

#web-performance ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  text-align: left;
}

#web-performance ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

#web-performance ul li strong {
  color: #2c3e50;
}

#web-performance img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  margin-top: 20px;
  transition: transform 0.3s ease;
}

#web-performance img:hover {
  transform: scale(1.02);
}



video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 10px 0;
}





/* ====== SECTION KEDUA: PAKET WEBSITE ====== */
section .card {
    background-color: #111827;
    color: #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin: 60px auto;
    max-width: 1100px;
    padding: 25px;
    transition: all 0.3s ease;
}

section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ====== Summary Header ====== */
.card-summary {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}

.card-summary img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.card-text h5 {
    margin-bottom: 10px;
    color: #22d3ee;
    font-size: 1.2rem;
}

.card-text p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #d1d5db;
}

/* ====== Detail Bagian Bawah ====== */
.card-detail {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ====== Galeri Gambar ====== */
.card-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.card-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-images img:hover {
    transform: scale(1.05);
}

/* ====== Daftar Fitur ====== */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-list li::before {
    content: "✔";
    color: #22d3ee;
    font-weight: bold;
}

/* ====== Pricing Section ====== */
.pricing {
    background-color: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing p {
    margin: 5px 0;
    font-size: 1rem;
}

/* ====== Tombol Order ====== */
.order-btn {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-btn:hover {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ====== Responsif untuk Mobile ====== */
@media (max-width: 768px) {
    .card-summary {
        flex-direction: column;
        text-align: center;
    }

    .card-summary img {
        width: 100%;
        height: auto;
    }

    .card-text h5 {
        font-size: 1rem;
    }

    .order-btn {
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
    }
}
