@font-face {
  font-family: 'Icofont';
  src: url('/fonts/icofont.ttf?v=1.0.0-beta') format('truetype');
  font-display: swap; /* 👈 penting */
}

@font-face {
  font-family: 'RalewayHeavy';
  src: url('/fonts/RalewayHeavy.woff2') format('woff2');
  font-display: swap; /* 👈 penting */
}

/* Variabel styling */
:root {
  --box-opacity: 0.55;
  --box-blur: 8px;
  --box-radius: 16px;
}

/* Tinggi & posisi slide */
#slider-container,
.unify-owl-slider,
.unify-owl-slider .single-slide {
  height: 75vh;
  min-height: 480px;
  position: relative;
  background: #000; /* fallback hitam agar tidak blank putih */
}

.unify-owl-slider .single-slide picture,
.unify-owl-slider .single-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Kontainer teks */
.slide-content {
  position: relative;
  display: inline-block;
  border-radius: var(--box-radius);
  isolation: isolate;
  z-index: 1;
  padding: clamp(12px, 3vw, 28px);
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden; /* biar overlay strip tidak memengaruhi layout */

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.slide-content .inner {
  position: relative;
  z-index: 2;
}

/* Overlay strip kiri */
.slide-left::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--box-blur));
  border-radius: 0 var(--box-radius) var(--box-radius) 0;
}

/* Overlay strip kanan */
.slide-right::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100vw;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--box-blur));
  border-radius: var(--box-radius) 0 0 var(--box-radius);
}

/* --- Animasi aktif / keluar --- */
.owl-item.active .slide-content {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.owl-item:not(.active) .slide-content {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all 0.5s ease-in-out;
}

/* --- Animasi masuk teks --- */
.owl-item .slide-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
.owl-item.active .slide-content > * {
  opacity: 1;
  transform: translateY(0);
}
/* Delay */
.owl-item.active .slide-content h3   { transition-delay: 0.2s; }
.owl-item.active .slide-content h1   { transition-delay: 0.4s; }
.owl-item.active .slide-content p    { transition-delay: 0.6s; }
.owl-item.active .slide-content .btn { transition-delay: 0.8s; }

/* --- Styling teks --- */
.slide-content h3 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #ffeb3b !important;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  text-transform: uppercase;
}
.slide-content h1 {
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 15px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}
.slide-content p {
  font-size: clamp(15px, 2.8vw, 20px);
  font-weight: 400;
  color: #fff !important;
  line-height: 1.7;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  #slider-container,
  .unify-owl-slider,
  .unify-owl-slider .single-slide {
    height: 65vh !important;
    min-height: 420px;
  }
  .slide-content {
    padding: 16px 20px;
  }
}
@media (max-width: 768px) {
  .slide-content p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 8px 0 12px !important;
    line-height: 1.5 !important;
  }
}




/* Tombol WA */
 .btn-whatsapp {
            display: inline-block;
            margin-top: 20px;
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
        }
        
        .btn-whatsapp i {
            margin-right: 10px;
            font-size: 1.4rem;
        }

/* Tombol WhatsApp dengan animasi pulse */
.btn-whatsapp-pulse {
  position: relative;
  overflow: hidden;
  animation: pulse 1.8s infinite;
  transition: transform 0.2s;
}

.btn-whatsapp-pulse:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* FOOTER */
.footer-widget .widget-title {
  color: #000; /* Judul jadi hitam */
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links a {
  color: #000; /* Link jadi hitam */
  font-weight: 500;
}

.footer-links a:hover {
  color: #444; /* Saat hover jadi abu tua, biar ada efek */
}

.footer-bottom-area {
  border-top: 1px solid #ddd;
  background: #f8f8f8; /* abu terang */
  padding: 15px 0;
  font-size: 14px;
  color: #444;
}

.footer-bottom-area .copyright-text p {
  margin: 0;
  color: #555;
}

.footer-bottom-area .copyright-text a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom-area .copyright-text a:hover {
  color: #007bff; /* hover jadi biru */
}

.footer-bottom-area .footer-social-links {
  text-align: right;
}

.footer-bottom-area .social-links li {
  display: inline-block;
  margin-left: 10px;
}

.footer-social-links ul.social-links > li > a {
    background-color: #ffffff !important; /* lingkaran putih penuh */
    color: #333 !important;               /* warna icon */
    border: none !important;              /* hilangkan border lama */
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social-links ul.social-links > li > a:hover {
    background-color: #007bff !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* Responsive: center align kalau di mobile */
@media (max-width: 768px) {
  .footer-bottom-area {
    text-align: center;
  }
  .footer-bottom-area .footer-social-links {
    text-align: center;
    margin-top: 10px;
  }
}

.footer-links {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px; /* kasih jarak antar item */
}

.footer-links li:last-child {
  margin-bottom: 0; /* biar item terakhir nggak kelebihan jarak */
}

@media (max-width: 768px) {
  .footer-links li {
    margin-bottom: 12px; /* agak renggang khusus mobile */
  }
}






/* BLOGS */
.blog-feed-area {
  padding: 50px 0; /* lebih hemat tinggi */
}
.single-blog-feed {
  margin-bottom: 30px; /* rapat tapi tetap ada jarak */
}
.single-blog-feed .blog-thumb img {
  height: 220px;      /* atur tinggi gambar biar konsisten */
  object-fit: cover;  /* gambar selalu proporsional */
  width: 100%;
}
.single-blog-feed .blog-content p {
  font-size: 14px;
  line-height: 1.6;
  max-height: 70px;   /* batasi agar paragraf tidak kepanjangan */
  overflow: hidden;
}


/* TWITTER */
/* Sembunyikan fallback kalau widget Twitter berhasil load */
.twitter-timeline-rendered ~ .tweet-fallback {
  display: no;
}

.tweet-fallback {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 10px;
  max-width: 100%;     /* <= penting: jangan lebih lebar dari col */
  box-sizing: border-box;
}

.tweet-fallback a {
  color: #1da1f2;
  text-decoration: none;
}

.tweet-fallback-footer {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}


/* Halaman Index */
/* Section Service */
.service-area .service-item {
  text-align: center;
  padding: 25px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-area .service-item i {
  font-size: 48px;
  color: #007bff;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-area .service-item h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-area .service-item p {
  font-size: 16px;   /* lebih besar */
  line-height: 1.6;
  color: #555;
}

/* Hover efek */
.service-area .service-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.service-area .service-item:hover i {
  transform: translateY(-8px) scale(1.1); /* icon naik & membesar */
  color: #0056b3; /* sedikit lebih gelap */
}

/* Section Title Styling */
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-title p {
  font-size: 18px;   /* diperbesar */
  line-height: 1.8;  /* lebih lega */
  color: #444;       /* abu gelap biar enak dibaca */
  max-width: 900px;  /* biar tidak terlalu panjang */
  margin: 0 auto;    /* center */
}


/* ABOUT US */
.skill-bg {
    background: linear-gradient(to right, #f5f7fa, #e0e4e8);
}

.vision-mission-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-size: 14px; /* lebih kecil */
}
.vision-mission-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.vision-mission-box h3 {
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 18px;
}
.vision-mission-box p {
    color: #555;
    line-height: 1.5;
}


/* SERVICE */

/* Efek Hover untuk Gambar Layanan - Style seperti vision-mission-box */
.service-image-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.service-image-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image-box img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-image-box:hover img {
    transform: scale(1.05);
}

.service-image-caption {
    margin-top: 15px;
    font-weight: 600;
    color: #0d6efd;
    font-size: 16px;
}

/* EMPHASIS BOX STYLE - GRADIENT ONLY */
.emphasis-box {
    padding: 30px;
    border-radius: 16px;
    margin: 25px 0;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.emphasis-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.emphasis-box p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Optional: Tambahkan efek subtle shine pada hover */
.emphasis-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.6s ease;
    transform: rotate(45deg);
    opacity: 0;
}

.emphasis-box:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .emphasis-box {
        padding: 25px 20px;
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .emphasis-box p {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .emphasis-box {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .emphasis-box p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* CONTACT BOX STYLES - HORIZONTAL */
.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap; /* Pastikan tidak wrap ke bawah */
    margin: 60px 0;
    flex-direction: row; /* Horizontal */
}

.contact-box {
    background: #fff;
    color: #111;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    width: 320px; /* Lebar tetap */
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0; /* Tidak menyusut */
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Responsive Design untuk Horizontal */
@media (max-width: 1200px) {
    .contact-boxes {
        gap: 25px;
    }
    
    .contact-box {
        width: 300px;
        min-height: 260px;
        padding: 35px 25px;
    }
}

@media (max-width: 1024px) {
    .contact-boxes {
        gap: 20px;
    }
    
    .contact-box {
        width: 280px;
        min-height: 240px;
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .contact-boxes {
        flex-wrap: wrap; /* Mulai wrap di tablet kecil */
        gap: 25px;
    }
    
    .contact-box {
        width: 45%; /* Dua kotak per baris */
        min-height: 220px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-boxes {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .contact-box {
        width: 100%; /* Satu kotak per baris di mobile */
        max-width: 400px;
        min-height: 200px;
        padding: 25px;
    }
}

/* Tambahan untuk memastikan horizontal di desktop */
@media (min-width: 993px) {
    .contact-boxes {
        flex-wrap: nowrap;
    }
    
    .contact-box {
        flex: 1; /* Membagi ruang secara equal */
        max-width: 350px;
    }
}

.fullwide-map {
            width: 100%;
            margin: 30px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .map {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            max-width: 300px;
        }
        
        .map-overlay h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
		
		.section-box {
  background: #f9f9f9;
  padding: 20px 25px;
  border-left: 5px solid #007bff; /* biru */
  margin: 40px 0 20px 0;
  border-radius: 8px;
}
.section-box h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.service-feature-item {
    min-height: 260px; /* atur sesuai kebutuhan */
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.d-flex {
    display: flex;
}
.flex-fill {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px; /* jarak antar box */
}

.vision-mission-box {
  flex: 0 0 280px; /* semua box fix lebar 280px */
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.vision-mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.vision-mission-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.vision-mission-box p {
  font-size: 14px;
  line-height: 1.6;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.process-step {
  flex: 1 1 180px;
  background: #fff;
  text-align: center;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e91e63;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* garis penghubung antar step */
.process-flow::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.process-step {
  z-index: 1;
}

/* responsive: biar turun ke bawah di layar kecil */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }
  .process-flow::before {
    display: none;
  }
}

.service-feature-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  height: 100%; /* biar rata tingginya */
}

.service-feature-item i {
  font-size: 32px;
  color: #e91e63; /* warna utama, bisa ganti sesuai brand */
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-feature-item:hover i {
  color: #2196f3; /* warna berubah saat hover */
}

.service-feature-item h5 {
  margin-bottom: 10px;
  font-weight: 600;
}



.section-top {
  padding-top: 6rem; /* lebih lega di atas */
}

html {
  scroll-behavior: smooth;
}


.scrollup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  z-index: 999;
}
.scrollup:hover {
  background: #0056b3;
  color: #fff;
}

/* Footer link dasar */
.footer-links li a {
    display: inline-block;
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 0;
    position: relative;
}

/* Efek hover: warna berubah */
.footer-links li a:hover {
    color: #00c6ff; /* biru neon, bisa diganti sesuai tema */
    padding-left: 5px; /* geser dikit ke kanan */
}

/* Garis bawah animasi saat hover */
.footer-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #00c6ff;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

/* Style dasar link footer */
.footer-links li a {
    display: inline-block;
    color: #bbb;
    text-decoration: none;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border-radius: 4px; /* biar kotaknya agak rounded */
}

/* Efek hover */
.footer-links li a:hover {
    background-color: rgba(0, 0, 0, 0.7); /* kotak hitam tipis */
    color: #fff; /* teks jadi putih */
    font-size: 110%; /* teks sedikit membesar */
}


/* Style default untuk semua link di footer */
footer a {
    display: inline-block;
    color: #bbb;
    text-decoration: none;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Efek hover */
footer a:hover {
    background-color: rgba(0, 0, 0, 0.7); /* kotak hitam tipis */
    color: #fff !important; /* teks putih */
    font-size: 110%; /* membesar sedikit */
}

footer {
  background-color: #2c2c2c; /* abu-abu gelap */
  color: #f5f5f5;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ff5252; /* aksen merah */
}


/* Footer Gelap (override) */
footer.footer-area,
footer.footer-area .footer-top-area,
footer.footer-area .footer-bottom-area {
  background: #4D4D4D !important;   /* abu-abu gelap */
  color: #f5f5f5 !important;     /* teks putih */
  border-top: 1px solid #444;
}

/* Semua link di footer jadi putih default */
footer.footer-area a {
  color: #f5f5f5 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  padding: 0; /* reset */
  font-size: inherit;
  background: transparent !important;
}

/* Hover effect */
footer.footer-area a:hover {
  color: #ff5252 !important;     /* merah */
  font-size: 105%;               /* sedikit membesar */
  border: 1px solid #fff;        /* kotak tipis putih */
  padding: 2px 4px;              /* beri ruang biar keliatan */
  background: transparent !important;
}
/* Judul widget di footer */
footer.footer-area .widget-title {
  color: #ffffff !important;   /* putih biar kontras */
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;   /* opsional, biar lebih tegas */
  border-bottom: 1px solid #444; /* opsional, garis bawah tipis */
  padding-bottom: 5px;
}
/* Tweet fallback transparan di footer */
footer.footer-area .tweet-fallback {
  background: rgba(255, 255, 255, 0.05); /* transparan tipis */
  backdrop-filter: blur(4px);            /* efek kaca buram */
  color: #f5f5f5;                        /* teks putih */
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid rgba(255,255,255,0.15); /* garis tipis */
}

footer.footer-area .tweet-fallback a {
  color: #ff6b6b;              /* link merah lembut */
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer.footer-area .tweet-fallback a:hover {
  color: #fff;
  background: rgba(255, 107, 107, 0.3); /* merah transparan */
  padding: 2px 6px;
  border-radius: 4px;
}

footer.footer-area .tweet-fallback-footer {
  font-size: 12px;
  color: #bbb;
  margin-top: 8px;
  display: block;
}

/* Footer Bottom Area lebih cerah */


.portfolio-item img {
  width: 100%;
  height: 180px;      /* seragam tinggi kecil */
  object-fit: cover;  /* crop rapi */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.05);
}

.portfolio-content h6 {
  font-size: 14px;
  margin: 6px 0;
}

.portfolio-content p {
  font-size: 13px;
  color: #bbb;
}


.skill-man {
  perspective: 1200px; /* ruang 3D */
  display: inline-block;
}

.skill-man img {
  transition: transform 3s ease-in-out, box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.skill-man img:hover {
  transform: rotateY(360deg) scale(1.08);  /* putar + sedikit membesar */
  box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* kesan berat */
  border-radius: 10px; /* opsional, bikin lebih modern */
}



/* --- Slider proporsional --- */
#cmi-slider .single-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;         /* tinggi minimum */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
}

/* Overlay & konten tetap di atas background */
#cmi-slider .slider-content-area.overlay {
    position: relative;
    z-index: 1;
}

/* Slide content */
#cmi-slider .slide-content {
    text-align: center;
}

/* Navigasi slider tetap sama */
#cmi-slider .owl-nav button.owl-prev,
#cmi-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

#cmi-slider .owl-nav button.owl-prev:hover,
#cmi-slider .owl-nav button.owl-next:hover {
    background: rgba(255,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

#cmi-slider .owl-nav button.owl-prev { left: 20px; }
#cmi-slider .owl-nav button.owl-next { right: 20px; }

/* Responsif mobile */
@media (max-width: 768px) {
    #cmi-slider .slide-content h1 { font-size: 1.5rem; }
    #cmi-slider .slide-content h3 { font-size: 1rem; }
    #cmi-slider .slide-content p { font-size: 0.875rem; }
    #cmi-slider .single-slide { padding: 3rem 1rem; }
}

$.scrollUp({
    scrollText: "<i class='icofont icofont-thin-up'></i>",
    easingType: "linear",
    scrollSpeed: 900,
    animation: "fade"
});

#scrollUp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    display: flex;           /* caret di tengah */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
}


/* Responsif mobile */
@media (max-width: 768px) {
    #scrollUp {
        display: flex !important;
        bottom: 15px !important;
        right: 15px !important;
        z-index: 9999 !important;
    }
}

/* Footer Styles */
.footer-area.pt-80 {
  padding-top: 0 !important;
}

.footer-top-area {
    background-color: #1a1a1a;
    padding: 50px 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-widget p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ccc;
}

.widget-contact-info i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.widget-contact-info a {
    color: #ccc;
    text-decoration: none;
}

.widget-contact-info a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    font-size: 12px;
}

/* Twitter Widget */
.widget-tweets {
    position: relative;
}

.twitter-container {
    min-height: 300px;
}

.twitter-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #ccc;
}

.twitter-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tweet-fallback {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.tweet-fallback strong {
    color: #1da1f2;
}

.tweet-fallback .tweet-content {
    margin: 10px 0;
    color: #ccc;
}

.tweet-fallback .tweet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.tweet-fallback .tweet-footer a {
    color: #1da1f2;
    text-decoration: none;
    font-size: 14px;
}

.tweet-fallback .tweet-date {
    color: #888;
    font-size: 12px;
}

/* Blog Widget */
.widget-blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.blog-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
}

.blog-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.blog-content {
    flex: 1;
}

.blog-content h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
}

/* Footer Bottom (final clean version) */
#footer-bottom {
  background: #0d0d0d;      /* hitam */
  border-top: 1px solid #333;
  padding: 20px 0;
  color: #f5f5f5;           /* teks default cerah */
  font-size: 14px;
  line-height: 1.6;
}

/* Copyright text */
#footer-bottom .copyright-text p {
  margin: 0;
  color: #f5f5f5;
}

#footer-bottom .copyright-text a {
  color: #ffffff;           /* putih untuk kontras */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
#footer-bottom .copyright-text a:hover {
  color: #ff4444;           /* merah terang saat hover */
}

/* Social links */
#footer-bottom .social-links li {
  margin-left: 15px;
}
#footer-bottom .social-links li a {
  color: #f5f5f5;
  font-size: 16px;
  transition: all 0.3s ease;
}
#footer-bottom .social-links li a:hover {
  color: #ff4444;
  transform: scale(1.2);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-area {
        padding: 60px 0 0;
    }
    
    .footer-top-area {
        padding: 40px 0;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-social-links ul {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-social-links li {
        margin: 0 10px;
    }
    
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .footer-widget {
        text-align: center;
    }
    
    .widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .blog-link {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-image {
        margin: 0 auto 10px;
    }
}

.logo img {
  height:50px;   /* atur tinggi sesuai kebutuhan tampilan (sesuaikan) */
  width:auto;    /* width auto agar rasio dijaga */
  max-width:100%;
  display:block;
}
@media (max-width:767px) {
  .logo img { height:40px; } /* responsive */
}

/* Untuk menu filter */
.filter-catagory-menu li {
  color: #333; /* lebih gelap agar kontras di background putih */
  font-weight: 600;
}
.filter-catagory-menu li.active {
  background-color: #007bff; /* biru kontras */
  color: #fff !important;    /* putih jelas di atas biru */
  border-radius: 4px;
  padding: 4px 10px;
}

/* Untuk judul & deskripsi portfolio */
.portfolio-content h6 a {
  color: #222; /* teks lebih gelap */
  font-weight: 600;
  text-decoration: none;
}
.portfolio-content p {
  color: #555; /* abu lebih pekat, aman */
}
#cmi-slider .slide-content h2 {
    color: #fff !important;
}
#cmi-slider .slide-content h3 {
    color: #fff !important;
}
#cmi-slider .slide-content p {
    color: #f0f0f0; /* abu2 muda biar kontras */
}
/* ============================
   BLOG PAGE - FINAL VERSION
   ============================ */

/* Wrapper utama blog */
.blog-page #blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* jarak antar artikel */
}

/* Artikel - default 3 per baris */
.blog-page #blog-list .masonry-item {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
  position: relative !important;
  float: none !important;
  display: flex;
}

/* Card tiap artikel */
.blog-page .single-post {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-page .single-post:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Thumbnail */
.blog-page .post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* Meta info */
.blog-page .post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

/* Judul */
.blog-page .entry-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Isi artikel ringkas */
.blog-page .entry-content p {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 10px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Tombol read more selalu di bawah */
.blog-page .readmore {
  margin-top: auto;
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet - 2 artikel per baris */
@media (max-width: 768px) {
  .blog-page #blog-list .masonry-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobile - 1 artikel per baris */
@media (max-width: 576px) {
  .blog-page #blog-list .masonry-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ===== READ MORE BUTTON ===== */
.blog-page .readmore {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #8ec448, #6fa12f);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.blog-page .readmore:hover {
  background: linear-gradient(135deg, #6fa12f, #8ec448);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
}

/* Tambahkan ikon panah yang lebih halus */
.blog-page .readmore::after {
  content: " →";
  font-size: 0.9rem;
  transition: margin-left 0.3s ease;
}

.blog-page .readmore:hover::after {
  margin-left: 5px;
}


 /* =========================
   ARTIKEL STYLING SIMPLE
   ========================= */

/* Kontainer isi artikel */
.artikel-isi {
  font-family: "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

/* Huruf pertama di setiap paragraf */
.artikel-isi p::first-letter {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
  margin-right: 2px;
}

/* Atur jarak antar paragraf */
.artikel-isi p {
  margin-bottom: 1rem;
}

/* List pakai icon check */
.artikel-isi ul {
  list-style: none; /* Hilangkan bullet default */
  padding-left: 0;
  margin-left: 0;
}

.artikel-isi ul li {
  position: relative;
  padding-left: 1.8rem; /* jarak antara icon dan teks */
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Icon check */
.artikel-isi ul li::before {
  content: "\f00c"; /* Unicode Font Awesome untuk check */
  font-family: "Font Awesome 6 Free"; /* WAJIB untuk FA v6 */
  font-weight: 900; /* Bold weight untuk solid icons */
  color: #28a745; /* Hijau */
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1rem;
}

/* ===== Artikel Lainnya ===== */
.artikel-lainnya {
  padding-left: 0;
  margin: 0;
}

.artikel-lainnya .artikel-item {
  margin-bottom: 1rem; /* jarak antar item */
}

.artikel-lainnya .artikel-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.artikel-lainnya .artikel-card:hover {
  transform: translateY(-3px);
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

/* Judul artikel lainnya */
.artikel-lainnya .artikel-judul {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.artikel-lainnya .artikel-card:hover .artikel-judul {
  color: #007bff;
}

/* Gambar agar konsisten */
.artikel-lainnya img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}
/* Di file CSS Anda */
.post-thumbnail img,
.artikel-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Untuk masonry layout di blog page */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
}

/* Responsive images */
.img-fluid {
  max-width: 100%;
  height: auto;
}