* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f4f4;
}

.navbar {
  background: #111;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.container {
  padding: 40px;
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 30px;
  border-radius: 8px;
}


/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.service-icon {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  transition: .3s;
}

.service-card-modern:hover {
  transform: translateY(-8px);
}

.service-card-modern img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-body p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
}

.service-footer {
  margin-top: 15px;
}

.price {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #6d28d9;
  color: #fff;
  font-weight: 700;
}


/* ===== FIX SPACING OUR SERVICES ===== */
.services {
  padding-top: 120px;   /* jarak dari section atas */
  padding-bottom: 100px;
}

.services .section-title {
  margin-bottom: 40px; /* jarak ke card */
  letter-spacing: 2px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 0;
  background: #ffffff;
}

.portfolio .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
}

.portfolio .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #6d28d9;
  border-radius: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  transition: .3s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/* IMAGE SQUARE */
.portfolio-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BODY */
.portfolio-body {
  padding: 20px;
  text-align: center;
}

.portfolio-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-body p {
  font-size: 14px;
  opacity: .75;
  line-height: 1.6;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 100px 0;
  background: #f8fafc;
}

.portfolio-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: .5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  transition: .3s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

/* IMAGE SQUARE */
.portfolio-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* BODY */
.portfolio-body {
  padding: 20px;
}

.portfolio-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.portfolio-body p {
  font-size: 14px;
  opacity: .75;
  line-height: 1.6;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 100px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-line {
  width: 70px;
  height: 4px;
  background: #6d28d9;
  margin: 0 auto 60px;
  border-radius: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  transition: .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

/* image square */
.portfolio-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-body {
  padding: 22px;
}

.portfolio-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.portfolio-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ===== PORTFOLIO DETAIL ===== */
.portfolio-detail {
  padding: 100px 0;
  background: #fff;
}

.portfolio-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.portfolio-main-image img {
  width: 100%;
  border-radius: 20px;
}

.portfolio-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 14px;
}

.portfolio-credit p {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: .85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-detail {
  padding: 80px 0;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.portfolio-left img {
  width: 100%;
  border-radius: 16px;
}

.portfolio-right h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.portfolio-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 12px;
}

.portfolio-credit p {
  font-size: 14px;
  margin-bottom: 6px;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: transform .3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-card h3 {
  padding: 14px;
  color: #fff;
  text-align: center;
}


/* FIX IMAGE DETAIL PORTFOLIO */
.portfolio-detail {
  padding: 80px 0;
}

.portfolio-layout {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.portfolio-left img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 16px;
  object-fit: cover;
}
.portfolio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }
}


/* ===== PORTFOLIO FIX FINAL ===== */
.portfolio-layout {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portfolio-left img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
}

.portfolio-desc {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   PORTFOLIO GRID MODERN
================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

/* CARD */
.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* IMAGE 1:1 */
.portfolio-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.portfolio-card a {
  display: block;
  position: relative;
  color: #fff;
}

/* TITLE OVERLAY */
.portfolio-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0)
  );
  transition: padding .3s ease;
}

.portfolio-card:hover h3 {
  padding-bottom: 32px;
}

/* MOBILE */
@media (max-width: 768px) {
  .portfolio-grid {
    gap: 20px;
  }

  .portfolio-card h3 {
    font-size: 16px;
    padding: 18px;
  }
}

/* ===============================
   FIX PORTFOLIO PIPIH (FORCE 1:1)
================================ */

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* CARD RESET */
.portfolio-card {
  height: auto !important;
  max-height: none !important;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  transition: .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

/* FORCE IMAGE WRAPPER */
.portfolio-card a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}

/* IMAGE FIX */
.portfolio-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* TITLE OVERLAY */
.portfolio-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.0),
    rgba(0,0,0,0)
  );
}

/* =====================
   PORTFOLIO DETAIL
===================== */

.portfolio-detail {
  padding: 100px 0;
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.portfolio-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.portfolio-detail-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.portfolio-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* =====================
   GALLERY GRID
===================== */

.portfolio-gallery {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* ===============================
   PORTFOLIO FINAL FIX (BERSIH)
================================ */

/* SECTION */
.portfolio-list {
  padding: 100px 0;
  background: #f8fafc;
}

/* MATIIN PENGARUH CONTAINER */
.portfolio-list .container {
  max-width: 1600px;
  padding: 0 40px;
}

/* GRID 4 KOLOM */
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD GEDE */
.portfolio-cards .portfolio-card {
  position: relative;
  height: 420px;              /* ⬅️ KUNCI UKURAN */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  transition: all .35s ease;
}

/* HOVER */
.portfolio-cards .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,.28);
}

/* IMAGE FULL */
.portfolio-cards .portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.portfolio-cards .portfolio-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.portfolio-overlay {
  background: transparent;
}


/* TITLE */
.portfolio-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .portfolio-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-cards .portfolio-card {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .portfolio-cards {
    grid-template-columns: 1fr;
  }

  .portfolio-cards .portfolio-card {
    height: 300px;
  }
}

/* HILANGKAN SEMUA OVERLAY HITAM */
.portfolio-item::before,
.portfolio-item::after,
.portfolio-card::before,
.portfolio-card::after {
  content: none !important;
  background: none !important;
}

/* PASTIKAN GAMBAR BERSIH */
.portfolio-item img {
  background: none !important;
  filter: none !important;
}

/* OVERLAY JUGA DIMATIKAN */
.portfolio-overlay {
  background: none !important;
}


/* ===== PORTFOLIO DETAIL ===== */
.portfolio-detail{
  padding:80px 0;
}

.portfolio-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.portfolio-detail-image img{
  width:100%;
  border-radius:16px;
}

.portfolio-detail-content h1{
  font-size:36px;
  margin-bottom:15px;
}

.portfolio-detail-content p{
  line-height:1.7;
  color:#555;
}

/* ===== GALLERY ===== */
.gallery-title{
  margin-top:60px;
  margin-bottom:20px;
}

.portfolio-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:15px;
}

.gallery-item{
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.3s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* ===== LIGHTBOX ===== */
#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:16px;
}

/* ===== PORTFOLIO LIST ===== */
.portfolio-cards{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:25px;
}

.portfolio-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}

.portfolio-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.portfolio-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  opacity:0;
  transition:.3s;
}

.portfolio-card:hover .portfolio-overlay{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .portfolio-detail-grid{
    grid-template-columns:1fr;
  }
}

/* =====================
   LIGHTBOX
===================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn .3s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  transition: transform .25s ease;
  cursor: grab;
}

.lightbox img:active {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}


/* ABOUT PAGE */
.about-page {
  padding: 80px 0;
}

.about-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.about-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.about-header p {
  font-size: 16px;
  color: #666;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* CONTENT */
.about-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-content p {
  color: #555;
  margin-bottom: 25px;
}

.about-mission {
  padding-left: 20px;
  margin-bottom: 30px;
}

.about-mission li {
  margin-bottom: 8px;
}

/* EXTRA IMAGES */
.about-extra-images {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.about-extra-images img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}



.team-section {
  padding: 100px 0;
  background: #f9fafc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h4 {
  margin-bottom: 5px;
}

.team-card span {
  font-size: 14px;
  opacity: .7;
}


.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-extra-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-extra-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3,
.footer-box h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-box p {
  line-height: 1.7;
  font-size: 14px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-box ul li a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.2s;
}

.footer-box ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-social {
  display: flex;
  flex-direction: column; /* SUSUN KE BAWAH */
  gap: 8px;
  margin-top: 12px;
}

.footer-social a {
  color: #cbd5f5;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #2563eb;
  padding-left: 6px; /* efek geser dikit */
}


/* FOOTER */
.site-footer {
  background: #0b1220;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
  }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10001;
  transition: .25s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,.7);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

#lightbox-img {
  max-width: 88%;
  max-height: 88%;
  border-radius: 16px;
}

@media (max-width: 576px) {
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}



