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

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* =========================
   PORTOFOLIO SECTION
========================= */
.portofolio {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: clamp(60px, 12vw, 120px) clamp(16px, 6vw, 80px);
  background: linear-gradient(135deg, #E3F2FD, #90CAF9);
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADING
========================= */
.portofolio h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.25;
  color: #0D1B2A;
  max-width: 720px;
  margin-bottom: 20px;
  text-align: center;
}

/* =========================
   DESCRIPTION
========================= */
.portofolio p {
  font-size: clamp(12px, 2.5vw, 12px);
  line-height: 1.7;
  color: #1B365D;
  max-width: 680px;
  margin-bottom: 48px;
  text-align: left;
}

/* =========================
   RESPONSIVE TWEAK
========================= */
@media (max-width: 768px) {
  .portofolio {
    text-align: left;
  }

  .portofolio p {
    margin-bottom: 36px;
  }
}
/* =========================
   PORTFOLIO JASA
========================= */

#portfolio-section {
  padding: 64px 16px;
  background-color: #ffffff;
}

.portfolio-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

/* GRID */
.portfolio-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.portfolio-item {
  text-decoration: none;
  background: #f9fafb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* TEXT */
.portfolio-item p {
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  text-align: center;
}

/* HOVER */
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
  .portfolio-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-item img {
    height: 180px;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {
  .portfolio-heading {
    font-size: 32px;
  }

  .portfolio-item img {
    height: 200px;
  }
}
.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;
}
.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;
}
}