/* ===== STYLES UNTUK BLOG & ARTIKEL NAVIGATION ===== */
#blog .article-navigation {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

#blog .prev-article-btn, 
#blog .next-article-btn {
  display: block;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 80px;
  overflow: hidden;
}

#blog .prev-article-btn:hover, 
#blog .next-article-btn:hover {
  background: #4CAF50;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#blog .prev-article-btn span, 
#blog .next-article-btn span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#blog .prev-article-btn {
  text-align: left;
  padding-left: 20px;
}

#blog .next-article-btn {
  text-align: right;
  padding-right: 20px;
}

/* Styles untuk kartu artikel */
#blog .single-blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

#blog .single-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

#blog .blog-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

#blog .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#blog .single-blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

#blog .blog-date-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 128, 0, 0.85);
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

#blog .blog-date-overlay span:first-child {
  font-size: 18px;
}

#blog .blog-date-overlay span:last-child {
  font-size: 12px;
  text-transform: uppercase;
}

#blog .blog-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#blog .blog-card-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
}

#blog .blog-card-content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

#blog .blog-card-content h3 a:hover {
  color: #4CAF50;
}

#blog .blog-card-content p {
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
}

#blog .blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

#blog .blog-card-meta span {
  color: #888;
  font-size: 13px;
}

#blog .read-more-btn {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

#blog .read-more-btn:hover {
  color: #388E3C;
  text-decoration: underline;
}

#blog .btn-primary {
  background: #4CAF50;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  font-weight: 600;
  margin-top: 20px;
}

#blog .btn-primary:hover {
  background: #388E3C;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsivitas untuk blog section */
@media (max-width: 992px) {
  #blog .col-md-3 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #blog .prev-article-btn, 
  #blog .next-article-btn {
    height: auto;
    min-height: 60px;
    margin-bottom: 15px;
    text-align: center !important;
    padding: 10px !important;
  }
  
  #blog .prev-article-btn span, 
  #blog .next-article-btn span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  #blog .col-md-3, 
  #blog .col-sm-6 {
    width: 100%;
  }
  
  #blog .blog-card-image {
    height: 180px;
  }
}
/* ===== STYLES TAMBAHAN UNTUK BLOG CARD ===== */
#blog .blog-category {
  font-weight: bold;
  color: #4CAF50;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

#blog .blog-card-content h3 {
  margin-top: 0;
  margin-bottom: 10px; /* Diperkecil dari 12px */
  font-size: 18px;
  line-height: 1.4;
  height: 50px;
  overflow: hidden;
}

#blog .blog-card-content p {
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  height: 68px;
  overflow: hidden;
}

/* Responsivitas tambahan */
@media (max-width: 992px) {
  #blog .col-md-4 {
    width: 50%;
  }
  
  #blog .blog-card-content h3 {
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #blog .col-md-4,
  #blog .col-sm-6 {
    width: 100%;
  }
  
  #blog .blog-card-content h3 {
    height: auto;
    font-size: 16px;
  }
  
  #blog .blog-card-content p {
    height: auto;
  }
}

/* Animation untuk wow fadeIn */
#blog .wow.fadeIn {
  animation-duration: 0.6s;
}

/* Section background */
#blog .section-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
}

/* Mengurangi padding di footer */
.footer-top.section-padding {
  padding-top: 40px;
  padding-bottom: 30px;
}

/* Fix navbar toggle visibility and collapse behavior */
@media (min-width: 768px) {
    .navbar-toggle {
        display: none !important;
    }
    .navbar-collapse {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        display: none !important;
    }
    .navbar-collapse.in {
        display: block !important;
    }
}

.skill-area {
    background-color: #f0f0f0; /* abu-abu muda */
}


/* Wrapper Simulasi - CTA */
.simulation-wrapper {
    /* 
       Tambahkan padding-top yang besar untuk membuat jarak.
       100px biasanya cukup lega untuk memisahkan section.
    */
    padding-top: 100px; 
    padding-bottom: 60px;
    
    background-color: #f9f9f9; /* Warna background agak terang */
    
    /* Opsional: Jika ingin background menyatu halus dengan section di atas (gray-bg),
       Anda bisa menghapus background-color ini. */
}
.faq-area {
  padding-top: 16px;
}

#dokumentasi + .faq-area {
  padding-top: 16px;
}


.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0 0 18px;
  color: #444;
  line-height: 1.7;
}
/* ================================
   GRID DOKUMENTASI EVENT
   ================================ */
.dokumentasi-grid {
  margin: 32px auto 10px; /* sebelumnya 40px auto 60px */
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


.dokumentasi-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dokumentasi-grid img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Tablet */
@media (max-width: 992px) {
  .dokumentasi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .dokumentasi-grid {
    grid-template-columns: 1fr;
  }

  .dokumentasi-grid img {
    height: 200px;
  }
}

.artikel-text h2 {
  margin-top: 40px;
  margin-bottom: 18px;
}

.artikel-text h2 + p {
  margin-top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   CTA EVENT (RAPI & AMAN FLOATING)
   ================================ */
.cta-event {
  text-align: center;
  padding: 48px 20px 72px; /* extra bawah biar aman */
  margin-top: 40px;
  background: #f8f9fa;
  border-top: 1px solid #e5e5e5;
}

.cta-event .cta-text {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.btn-cta-event {
  display: inline-block;
  background: #198754;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta-event:hover {
  background: #157347;
}
#produk-offer-static {
  color: #fff;
}

#produk-offer-static h2 {
  margin-bottom: 10px;
}

#produk-offer-static .intro-text {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.95;
}

#produk-offer-static .produk-item {
  text-align: center;
  margin-bottom: 40px;
}

#produk-offer-static .produk-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

#produk-offer-static .produk-item p {
  font-size: 14px;
  margin-bottom: 15px;
}

#produk-offer-static img {
  border-radius: 6px;
}
/* ============================
   PRODUK OFFER HOVER EFFECT (FIX)
   ============================ */

.produk-offer-grid .produk-item {
  text-align: center;
  padding: 20px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.produk-offer-grid .produk-item img {
  transition: transform .5s ease;
  border-radius: 12px;
}

/* Hover */
.produk-offer-grid .produk-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
}

.produk-offer-grid .produk-item:hover img {
  transform: scale(1.08);
}

#maternity.section-padding {
  padding-bottom: 40px;
}
#maternity .dokumentasi-grid {
  margin-bottom: 30px;
}


/* SUPER FIX: JARAK GRID FOTO → FAQ */
.artikel-area.section-padding {
  padding-bottom: 10px !important;
}

.faq-area.section-padding {
  padding-top: 10px !important;
}

.dokumentasi-grid {
  margin-bottom: 10px !important;
}

/* FAQ HEADER BLOCK (SEPERTI CTA) */
.faq-header {
  background: #f1f3f5;       /* abu-abu lembut */
  padding: 18px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  text-align: center;
}

.faq-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

/* ================================
   WEDDING CITY PHOTO – MODERN LOOK
   ================================ */

.service-photo {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 15px 35px rgba(0,0,0,0.12),
    inset 0 0 0 6px #ffffff;
  transition: all 0.4s ease;
}

/* image */
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

/* soft highlight ring */
.service-photo::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 2;
  pointer-events: none;
}

/* hover effect */
.single-service:hover .service-photo {
  box-shadow:
    0 25px 55px rgba(0,0,0,0.18),
    inset 0 0 0 6px #f4f9f6;
}

.single-service:hover .service-photo img {
  transform: scale(1.08);
}

/* FIX: PogoSlider height */
.pogoSlider {
    width: 100% !important;
    height: 500px !important;
    min-height: 300px !important;
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: unset !important;
}

.pogoSlider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .pogoSlider {
        height: 300px !important;
    }
}

/* ===============================
   RAPIN SECTION TESTIMONI
================================ */

/* Kurangi tinggi section */
.testimonial-area {
  padding: 50px 0;   /* sebelumnya mungkin 100px */
}

/* Judul section */
.testimonial-area .section-title {
  margin-bottom: 30px;
}

.testimonial-area .section-title h2 {
  font-size: 28px;
  font-weight: 700;
}

.testimonial-area .section-title p {
  font-size: 14px;
  color: #777;
}


/* Card testimoni */
.testimonial-item {
  background: #fff;
  padding: 25px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  transition: 0.3s;
}



/* Teks kutipan */
.testimonial-item p {
  font-size: 17px;        /* lebih besar */
  font-style: italic;
  line-height: 1.6;
  color: #333;
  position: relative;
  padding: 0 10px;
}


/* Tambah tanda kutip */
.testimonial-item p::before {
  content: "❝";
  font-size: 32px;
  color: #6bbf45;
  position: absolute;
  left: -5px;
  top: -10px;
}

.testimonial-item p::after {
  content: "❞";
  font-size: 32px;
  color: #6bbf45;
  position: absolute;
  right: -5px;
  bottom: -10px;
}


/* Nama perusahaan */
.testimonial-item strong {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Hilangkan scrollbar */
.testimonial-track::-webkit-scrollbar {
  display: none;
}

/* Jarak antar section */
section {
  margin-bottom: 60px;
}
/* POPUP PREVIEW */

.portfolio-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preview-box {
  background: #fff;
  max-width: 500px;
  width: 90%;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: zoomIn .3s ease;
}

.preview-box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.close-preview {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

@keyframes zoomIn {
  from {transform: scale(.8);opacity:0;}
  to {transform: scale(1);opacity:1;}
}
.info-header {
  background: #f3f3f3;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

#produk-offer-static {
  position: relative;
}

#produk-offer-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
}

#produk-offer-static .container {
  position: relative;
  z-index: 2;
}
#produk-offer-static .info-header {
  background: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
}

#produk-offer-static .info-header h2 {
  color: #2e7d32; /* hijau tua */
}
#produk-offer-static .info-header h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
}



