* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* navbar start */
.navbar {
  width: 100%;
  height: 120px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}



.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* galeri */
/* ===== GALERI ===== */
.gallery-wrapper {
  display: block;
  padding: 40px 20px;
}

.gallery-section,
.video-section {
  text-align: center;
  margin: 60px 0;
}

.gallery-section h2,
.video-section h2 {
  color: #054e22;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.gallery-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: start;
  margin-top: 20px;
}

.gallery-grid img,
.video-grid iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-grid iframe {
  aspect-ratio: 16 / 9;
}

.insta-embed iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}

/* galeri */


.logo img {
  height: 50px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: #054e22;
}

/* Tombol menu (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transform-origin: center;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #003b14;
  border-radius: 3px;
  transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Mode responsif */
@media (max-width: 768px) {
  .nav-menu ul {
    position: absolute;
    top: 120px;
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active .bar:nth-child(1) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(2) {
    transform: rotate(-45deg) translateY(5.5px);
  }

  .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translateY(-5.55px);
  }

}
/* navbar end */

body {
margin: 0;
font-family: 'Poppins', sans-serif;
padding-top: 120px;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 2; /* isi ruang kosong di antara header dan footer */
}


/* hero start */
.hero {
position: relative;
height: 100vh;
background: url('assets/images/index/main.webp') no-repeat center center/cover;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
}


.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}


.hero-content {
width: 90%;
position: relative;
z-index: 1;
max-width: 1100px;
padding: 20px;
}


.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
text-align: left;
line-height: 1.3;
}


.hero h1 span {
color: #8bff3e;
}


.cta-buttons {
display: flex;
gap: 20px;
justify-content: left;
}


.indexbtn {
text-decoration: none;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
transition: background-color 0.3s ease;
}


.index-hero-btn-primary {
  background-color: #00491b; /* hijau WhatsApp */
  color: #fff;
}
.index-hero-btn-primary:hover {
  background-color: #055f26; /* sedikit lebih gelap saat hover */
}


.index-hero-btn-secondary {
background-color: #ff7b00;
border: 2px solid #fff;
color: #ffffff;
}


.index-hero-btn-secondary:hover {
background-color: #fff;
color: #000;
}


@media (max-width: 768px) {
.hero h1 {
font-size: 3rem;
}


.cta-buttons {
flex-direction: column;
}
}
/* hero end */

/* keunggulan start */
.keunggulan {
  text-align: center;
  padding: 80px 20px;
  text-align: center;
  max-width: 1800px;
  margin: 0 auto;
}

.keunggulan h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #055e22;
}

.keunggulan-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.keunggulan-item {
width: 350px;
min-height: 450px;
margin: 10px;
display: flex;
flex-direction: column;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keunggulan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Bagian gambar dengan efek fade bawah */
.keunggulan-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.keunggulan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.keunggulan-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #fff);
}

/* Bagian teks */
.keunggulan-content {
  padding: 25px 20px 35px;
}

.keunggulan-content h3 {
  color: #055e22;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.keunggulan-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* keunggulan end */

/* paket start */
.paket-preview {
padding: 80px 20px;
text-align: center;
max-width: 1800px;
margin: 0 auto;
}


.paket-preview h2 {
font-size: 2.5rem;
color: #054e22;
margin-bottom: 50px;
}


.paket-container {
display: flex;
flex-wrap: wrap;            /* WAJIB: biar pindah baris */
justify-content: center;
gap: 24px;                  /* jarak antar card */
padding: 0 12px;
box-sizing: border-box;
}


.paket-card {
flex: 0 0 300px;
width: 400px;
min-height: 450px;
margin: 10px;
display: flex;
flex-direction: column;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.paket-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.paket-card img {
width: 100;
height: 250px;
object-fit: cover;
flex-shrink: 0;
}


.paket-info {
padding: 15px 20px;
}


.paket-info h3 {
color: #054e22;
font-size: 1.3rem;
margin-bottom: 10px;
}


.paket-info p {
font-size: 0.95rem;
color: #555;
margin: 6px 0;
}


.harga span {
font-weight: 700;
color: #ff7b00;
}


.btn {
display: inline-block;
text-decoration: none;
background-color: #054e22;
color: #fff;
padding: 10px 20px;
border-radius: 6px;
font-weight: 600;
transition: background-color 0.3s ease;
margin-top: 10px;
}


.btn:hover {
background-color: #089131;
}


@media (max-width: 768px) {
.paket-preview h2 {
font-size: 2rem;
}
.paket-info p {
font-size: 0.9rem;
}
}
/* paket end */

/* testimoni start */
.testimoni {
padding: 80px 20px;
text-align: center;
max-width: 1800px;
margin: 0 auto;
}


.testimoni h2 {
font-size: 2.5rem;
color: #054e22;
margin-bottom: 50px;
}


.testimoni-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.testimoni-card {
width: 400px;
margin: 10px;
display: block;
background-color: #fff;
border-radius: 12px;
padding: 2rem 1.5rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.testimoni-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.testimoni-card img {
width: 90px;
height: 90px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 15px;
}


.testimoni-card h3 {
font-size: 1.2rem;
color: #054e22;
margin-bottom: 10px;
}


.testimoni-card p {
font-size: 0.95rem;
color: #555;
font-style: italic;
line-height: 1.6;
}


@media (max-width: 768px) {
.testimoni h2 {
font-size: 2rem;
}


.testimoni-card {
padding: 25px 15px;
}
}
/* testimoni end */

/* galeri start */
/* ==== GALERI SECTION ==== */
.galeri {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.galeri h2 {
  font-size: 2rem;
  color: #055e22;
  margin-bottom: 40px;
  font-weight: 700;
}

/* ==== SLIDER CONTAINER ==== */
.galeri-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.galeri-slide-wrapper {
  width: 100%;
  overflow: hidden;
}

.galeri-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.galeri-slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}

/* ==== TOMBOL SLIDER ==== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(5, 94, 34, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.slider-btn:hover {
  background-color: #04471a;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* ==== CTA BUTTON BAWAH ==== */
.galeri-btn-wrapper {
  margin-top: 40px;
}

.galeri-btn {
  display: inline-block;
  background-color: #055e22;
  color: white;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.galeri-btn:hover {
  background-color: #089131;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .galeri-slides img {
    height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* galeri end */

/* cta ulang start */
.cta-ulang {
  background: linear-gradient(rgba(9, 95, 34, 0.85), rgba(1, 74, 25, 0.85)),
              url('assets/images/kaabah-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-ulang h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-ulang p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  text-decoration: none;
  background-color: #ff7b00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background-color: #e26d00;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-ulang h2 {
    font-size: 2rem;
  }

  .cta-ulang p {
    font-size: 1rem;
  }
}
/* cta ulang end */

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.blog-section.container {
  display: block;
  max-width: 1200px;
}

.blog-section .section-title {
  font-size: 2rem;
  color: #054e22;
  margin-bottom: 10px;
}

.blog-section .section-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-link {
  color: #054e22;
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

.blog-more {
  margin-top: 40px;
}

.btn-more {
  display: inline-block;
  background: #054e22;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-more:hover {
  background: #00bd36;
}
/* ===== BLOG SECTION-end ===== */




/* footer start */
.footer {
  background-color: #054e22;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffb84d;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-section i {
  margin-right: 8px;
  color: #ffb84d;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffb84d;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-container {
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }
}
/* footer end */

/* halaman packages start*/

/* container utility */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

/* header / hero small */
.page-header{
  background:linear-gradient(0deg, rgba(11,95,255,0.95), rgba(11,95,255,0.95)), url('assets/images/kabah-hero.jpg') center/cover no-repeat;
  color:#fff;
  padding:60px 0;
  text-align:center;
}
.page-header h1{font-size:2.2rem;margin:0 0 8px}
.page-header p{margin:0 0 18px;opacity:0.95}
.btn-cta{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* filter buttons */
.filter-section{padding:22px 0}
.filters{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.filter-btn{
  background:#fff;border:1px solid #e6e9ef;padding:8px 14px;border-radius:999px;cursor:pointer;font-weight:600;
}
.filter-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}



/* paket grid */
.paket-page{
  width: 100%;
  padding: 30px 20px 80px;
  
}
.paket-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.paket-card {
  max-width: 300px;
  width: 100%;
  min-height: 420px;          /* agar ketinggian kartu seragam */
  display: flex;
  flex-direction: column;
}
.paket-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* card */

/* responsive tweaks */
@media (max-width:768px){
  .page-header h1{font-size:1.6rem}
  .card-actions{flex-direction:column}
}

.container-paket-page{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 80px;
  box-sizing: border-box;
}

/* buat class hidden untuk sembunyikan kartu */
.paket-card.hidden {
  display: none !important;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
.paket-card { /* agar transisi masuk lebih halus */
  transition: opacity .2s ease, transform .2s ease;
  opacity: 1;
  transform: translateY(0);
}
.filter-btn.active {
  background: var(--primary); /* contoh */
  color: #fff;
}


/* halaman packages end */


/* about-start */

:root {
  --primary: #024d1f;
  --accent: #ff7b00;
  --bg: #f8f9fb;
  --text: #1f2937;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header Section */
.page-header {
  background: linear-gradient(90deg, rgba(0,91,255,0.8), rgba(0,91,255,0.5)),
              url('assets/images/kabah-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-header h1 {
  font-size: 2.4rem;
  margin: 0;
}

.page-header span {
  color: var(--accent);
}

/* Content Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Intro Section */
.about-page{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-intro-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 40px;
  max-width: 1100px;
}

.about-text-container{
}

.about-text-container h2 {
  color: var(--primary);
  font-size: 1.5rem;
}

.about-text-container p {
  margin-top: 12px;
  font-size: 1rem;
}

.about-image {
  flex: 1 ;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Values Section */
.about-values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 10px 40px;
  max-width: 1100px;
}

.about-values-container h2 {
  margin-top: 10px;
}

.about-values-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 10px 10px;
}

.value-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
}

.value-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

/* Legal Section */
.about-legal-container {
  margin: 10px 40px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 1100px;
}

/* Gallery Section */
.about-gallery {
  margin-top: 60px;
  text-align: center;
}

.about-gallery h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.about-gallery p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-intro-container {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .about-image {
    order: 0;
  }
}

/* Pastikan container dalam about tidak ikut flex global */
.about-gallery.container {
  display: block;
}

.about-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}



/* about-end */

/* gallery-start */

/* Gallery */
.gallery-section {
  margin: 60px auto;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Video Section */
.video-section {
  margin: 60px auto;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}


/* gallery-end */

/* contact-start */

/* ===== HUBUNGI KAMI ===== */
.contact-wrapper {
  padding: 60px 20px;
  display: block;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 1.8rem;
  color: #054e22;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header p {
  color: #444;
  font-size: 1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #054e22;
  outline: none;
}

.btn-kirim {
  background: #054e22;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-kirim:hover {
  background: #0040cc;
}

.social-links{
  margin-top: 20px;
}

.contact-info {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-info h3 {
  color: #054e22;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact-info p {
  color: #333;
  margin-bottom: 10px;
}

.map-container iframe {
  border-radius: 10px;
  margin-top: 10px;
  height: 500px;
}


.social-links a {
  display: inline-block;
  margin-right: 5px;
  text-decoration: none;
  font-weight: 600;
  color: #054e22;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #077510;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 75px;        /* beri ukuran fix */
  height: 75px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;      /* untuk center isi */
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}


/* contact-end */


/* paket detail-start */

/* --- HERO SECTION --- */
.hero-paket {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1100px;
  margin: 60px auto;
}

.hero-text-paket {
  flex: 1;
  width: 90%;
  min-width: 350px;
  max-width: 1100px;
}

.hero-text-paket h1 {
  font-size: 4rem;
  color: #14532d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-text-paket .subtext {
  font-size: 2rem;
  color: #426143;
  margin-bottom: 25px;
  line-height: 1.3;
}

.hero-image-paket img {
  align-content: center;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

/* --- FASILITAS SECTION --- */
.fasilitas-paket-section {
  width: 90%;
  max-width: 1100px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 30px;
  margin: 50px auto;
  text-align: center;
}

.fasilitas-paket-section h2 {
  color: #14532d;
  margin-bottom: 20px;
}

.fasilitas-paket-section ul {
  list-style: none;
  padding: 0;
}

.fasilitas-paket-section li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}


/* --- CTA BUTTONS --- */
.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background-color: #14532d;
  color: white;
}

.btn-secondary {
  border: 1px solid #14532d;
  color: #14532d;
}

/* --- LOKASI SECTION --- */
.office-card {
  width: 90%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 60px auto;
}

.office-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.office-info {
  background: #054E22; /* abu gelap */
  padding: 20px;
}

.office-title {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffde4d; /* kuning */
}

.office-address {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #f8ffed;
}





/* paket detail-end */

/* faq */

.faq-wrapper {
      max-width: 800px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-title h1 {
      color: #02451c;
      font-size: 2rem;
    }

    .faq-item {
      width: 100%;
      box-sizing: border-box;
      background: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .faq-question {
      width: 100%;
      box-sizing: border-box;
      text-align: left;
      background: #fff;
      border: none;
      outline: none;
      padding: 18px 20px;
      font-size: 1rem;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      position: relative;
      transition: background 0.3s;
    }

    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 1.4rem;
      color: #02451c;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question {
      background: #fefffd;
    }

    .faq-item.active .faq-question::after {
      content: '−';
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 18px;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    /* CTA */
    .faq-cta {
      text-align: center;
      margin-top: 60px;
      background: #02451c;
      color: #fff;
      padding: 40px 20px;
      border-radius: 12px;
    }

    .faq-cta h3 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .faq-cta p {
      margin-bottom: 20px;
      font-size: 1.05rem;
    }

    .faq-cta a {
      display: inline-block;
      background: #fff;
      color: #02451c;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .faq-cta a:hover {
      background: #ff7b00;
      color: #fff;
    }

/* faq-end */

/* artikel start */

/* ==== Layout Artikel Page ==== */

/* Container utama */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Headline artikel */
.artikel-headline {
  margin-top: 20px;
}

.headline-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 10px;
  margin: 0px;
}

.headline-card img {
  width: 50%;
  border-radius: 12px;
  object-fit: cover;
}

.headline-content {
  flex: 1;
}

.headline-content h2 a {
  color: #055e22;
  text-decoration: none;
}

.headline-content h2 a:hover {
  text-decoration: underline;
}

.headline-content .meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.headline-content .excerpt {
  margin: 10px 0 10px;
  color: #444;
  line-height: 1.6;
}

.headline-content .btn {
  background-color: #055e22;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.headline-content .btn:hover {
  background-color: #04491b;
}

/* Kumpulan artikel */

.artikel-list {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
}

.artikel-list h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  color: #055e22;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  justify-content: center;
}

.artikel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.artikel-card:hover {
  transform: translateY(-5px);
}

.artikel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.artikel-info {
  padding: 20px;
}

.artikel-info h4 a {
  color: #055e22;
  text-decoration: none;
}

.artikel-info h4 a:hover {
  text-decoration: underline;
}

.artikel-info .meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.artikel-info .excerpt {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .headline-card {
    flex-direction: column;
  }

  .headline-card img {
    width: 100%;
  }
}

/* artikel end */

/* artikel detail */

/* Artikel Detail Layout */
.artikel-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.artikel-content img {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}

.artikel-content h1 {
  color: #124c2e;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.artikel-content .meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}


.artikel-content h3 {
  display: flex;
  margin-top: 1.5rem;
  color: #124c2e;
}

.artikel-lainnya h3{
  margin-bottom: 20px;
}


.artikel-lainnya-card {
  flex: 1 1 calc(50% - 20px);
  max-width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  margin-bottom: 20px;
}

.artikel-lainnya-card:hover {
  transform: translateY(-3px);
}


.artikel-lainnya-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.artikel-lainnya-card a {
  display: block;
  font-weight: 600;
  margin: 10px 12px 0;
  color: #004d40;
  text-decoration: none;
}

.artikel-lainnya-card .meta {
  margin: 6px 12px 12px;
  font-size: 0.85rem;
  color: #777;
}

.artikel-lainnya-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; /* agar responsif di layar kecil */
}

@media (max-width: 768px) {
    /* Jadikan layout 1 kolom */
    .artikel-detail {
        grid-template-columns: 1fr;
    }

    /* Pindahkan sidebar ke bawah */
    .artikel-lainnya {
        order: 2; /* pastikan berada setelah konten utama */
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    /* Buat card full width supaya rapi di HP */
    .artikel-lainnya-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* CTA Section */
.cta-section {
  margin-top: 3rem;
  text-align: center;
  background: #eaf8ef;
  padding: 2rem;
  border-radius: 12px;
}

.cta-box h3 {
  color: #124c2e;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: #444;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #0a7436;
  color: white;
}

.btn-secondary {
  background: white;
  color: #0a7436;
  border: 2px solid #0a7436;
}

.cta-buttons-home {
  display: flex;
  justify-content: left;
  gap: 1rem;
}

/* artikel detail end */