/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #f1f5f9;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  /* ================= HEADINGS ================= */
  h1, h2 {
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* ================= SECTION PADDING ================= */
  section {
    padding: 100px 20px;
  }
  
  /* ================= HERO ================= */
  .hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center/cover no-repeat;
    text-align: center;
    padding: 160px 20px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease forwards;
  }
  
  .hero h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #cbd5e1;
  }
  
  .hero p {
    max-width: 750px;
    margin: auto;
    margin-bottom: 40px;
    color: #e2e8f0;
    font-size: 17px;
  }
  
  
  /* ================= BUTTON PRIMARY ================= */
  .btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 206, 201, 0.4);
  }
  
  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 206, 201, 0.6);
  }
  
  /* ================= SERVICE SECTION ================= */
  .service-section {
    text-align: center;
  }
  
  .service-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .service-box {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 50px;
    border-radius: 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: 0.4s ease;
  }
  
  .service-box:hover {
    transform: translateY(-8px);
  }
  
  .service-box p {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 16px;
  }
  
  /* ================= SYARAT / TERMS ================= */
  .syarat-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .syarat-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    max-width: 850px;
    width: 100%;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    transition: 0.4s ease;
  }
  
  .syarat-wrapper:hover {
    transform: translateY(-8px);
  }
  
  .syarat-wrapper h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
  }
  
  .syarat-wrapper ul {
    padding-left: 25px;
  }
  
  .syarat-wrapper li {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #e2e8f0;
    position: relative;
    padding-left: 30px;
  }
  
  .syarat-wrapper li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00cec9;
    font-weight: bold;
  }
  
  /* ================= FORM ================= */
  .form-section {
    text-align: center;
  }
  
  .form-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .form-section p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  input, textarea {
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: rgba(78, 206, 108, 0.578);
    color: white;
    font-size: 15px;
    backdrop-filter: blur(10px);
  }
  
  input::placeholder,
  textarea::placeholder {
    color: #cbd5e1;
  }
  
  textarea {
    resize: none;
    height: 120px;
  }
  
  button {
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #0984e3, #6c5ce7);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
  }
  
  button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
  }
  
  /* ================= FOOTER ================= */
  footer {
    background: rgba(0,0,0,0.6);
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 60px;
  }
  
  /* ================= NAVBAR ================= */
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
  }
  
  .navbar .logo {
    font-size: 22px;
    font-weight: 700;
    color: #00cec9;
  }
  
  .navbar nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .navbar nav a:hover {
    color: #00cec9;
    transform: scale(1.1);
  }
  
  /* ================= WHATSAPP FLOAT ================= */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.15);
  }
  
  /* ================= ANIMATIONS ================= */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ================= RESPONSIVE ================= */
  @media(max-width: 768px) {
    .hero h1 {
      font-size: 34px;
    }
  
    .hero h2 {
      font-size: 20px;
    }
  
    section {
      padding: 70px 20px;
    }
  
    .service-box, .syarat-wrapper {
      padding: 30px;
    }
  
    form {
      padding: 0;
    }
  }




  /* ================= GALLERY ================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  .gallery-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  
  .gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  .gallery-item h4 {
    font-size: 18px;
    margin: 8px 0;
    color: #00cec9;
  }
  
  .gallery-item p {
    font-size: 14px;
    margin: 4px 0;
    color: #cbd5e1;
  }
  
  .wa-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25d366, #00b894);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 201, 0.4);
  }
  
  /* ================= HEADER CONTENT ================= */
  .gallery-header {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .gallery-header .header-content {
    background: rgba(0,0,0,0.5);
    padding: 25px 30px;
    border-radius: 20px;
    color: #fff;
  }
  
  .gallery-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00cec9;
  }
  
  .gallery-header p {
    font-size: 14px;
    margin: 6px 0;
    line-height: 1.5;
  }
  
  /* ================= LIGHTBOX ================= */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
  }
  
  .lightbox .close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .lightbox .close:hover {
    color: #00cec9;
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 768px) {
    .gallery-header h1 {
      font-size: 28px;
    }
    
    .gallery-header p {
      font-size: 12px;
    }
    
    .gallery-img {
      height: 150px;
    }
  }

  /* ================= LIGHTBOX ================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
  }
  
  .lightbox .close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 300px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .lightbox .close:hover {
    color: #00cec9;
  }

  .center-page {
    display: flex;
    justify-content: center;  /* tengah secara horizontal */
    align-items: center;      /* tengah secara vertical */
    height: 10vh;            /* penuh satu screen */
}

/* ================= GALERI PAGE ONLY ================= */

.gallery-page .gallery-header {
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.gallery-page .gallery-header .header-content {
  background: rgba(0,0,0,0.6);
  padding: 25px;
  border-radius: 20px;
  max-width: 800px;
}

.gallery-page .gallery-header h1 {
  font-size: 32px;
  color: #00cec9;
  margin-bottom: 10px;
}

.gallery-page .gallery-header h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.gallery-page .gallery-header p {
  font-size: 13px;
  line-height: 1.5;
}

/* ================= LOCATION MENU ================= */

.gallery-page .location-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.gallery-page .location-wrapper a {
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0984e3, #6c5ce7);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.gallery-page .location-wrapper a:hover {
  transform: translateY(-3px);
} he


/* ================= SECTION TITLE ================= */

.gallery-page .center-page {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
}

.gallery-page .center-page button {
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.gallery-page .center-page h2 {
  color: #00cec9;
}

/* ================= GALLERY GRID ================= */

.gallery-page section.gallery {
  padding: 40px 20px;
}

.gallery-page .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.gallery-page .gallery-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: 0.3s ease;
}

.gallery-page .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.gallery-page .gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 12px;
}

.gallery-page .gallery-item h4 {
  font-size: 17px;
  margin: 8px 0;
  color: #00cec9;
}

.gallery-page .gallery-item p {
  font-size: 14px;
  margin: 4px 0;
}

.gallery-page .wa-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #25d366, #00b894);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.gallery-page .wa-btn:hover {
  transform: translateY(-3px);
}

/* ================= LIGHTBOX FIX ================= */

.gallery-page .lightbox .close {
  font-size: 40px;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .gallery-page .gallery-header {
    height: 280px;
  }

  .gallery-page .gallery-header h1 {
    font-size: 24px;
  }

  .gallery-page .gallery-header h2 {
    font-size: 16px;
  }

  .gallery-page .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-img {
    height: 150px;
  }

  .gallery-page .location-wrapper {
    gap: 10px;
  }

  .gallery-page .location-wrapper a {
    padding: 8px 14px;
    font-size: 13px;
  }

}