* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

/* Custom Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animation variants */
.scroll-animate.fade-up {
  transform: translateY(50px);
}

.scroll-animate.fade-up.animate {
  transform: translateY(0);
}

.scroll-animate.fade-down {
  transform: translateY(-50px);
}

.scroll-animate.fade-down.animate {
  transform: translateY(0);
}

.scroll-animate.fade-left {
  transform: translateX(50px);
  opacity: 0;
}

.scroll-animate.fade-left.animate {
  transform: translateX(0);
  opacity: 1;
}

.scroll-animate.fade-right {
  transform: translateX(-50px);
  opacity: 0;
}

.scroll-animate.fade-right.animate {
  transform: translateX(0);
  opacity: 1;
}

.scroll-animate.zoom-in {
  transform: scale(0.8);
  opacity: 0;
}

.scroll-animate.zoom-in.animate {
  transform: scale(1);
  opacity: 1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 5px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;     /* sejajarkan logo & teks vertikal */
  gap: 8px;                /* jarak antar logo dan teks */
}

.logo img {
  width: 55px;             /* ubah sesuai kebutuhan (misal 50–60px) */
  height: auto;            /* biar proporsional */
  margin: 0;               /* hapus margin bawaan */
  display: block;          /* hilangkan jarak bawah default gambar */
}

.beauty-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: #f4a7b9;          /* pink elegan */
  letter-spacing: 1px;
  line-height: 1;          /* biar tidak terlalu tinggi */
}

.sari-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;          /* ganti #333 jika header terang */
  letter-spacing: 0.5px;
  line-height: 1;          /* sejajarkan tinggi huruf */
}




/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff4081;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-image: url('assets/img/bg2.jpg');
  background-size: cover;
  background-position: center;
  transition: background-image 2s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  width: 90%;
  max-width: 800px;
  padding: 20px;
}

.content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 15px;
  line-height: 1.2;
}

.content p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn {
  background-color: #ff4081;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: #e91e63;
  transform: translateY(-2px);
}

/* === TESTIMONI SECTION === */
.testimoni {
  background-color: #fafafa;
  padding: 80px 20px;
}

.container-testimoni {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.judul-testimoni {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d, #c471ed, #ff6b9d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  animation: shimmer 3s linear infinite;
}

.testimoni-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.testimoni-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimoni-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b9d, #c471ed);
  transition: left 0.4s ease;
}

.testimoni-box:hover::before {
  left: 0;
}

.testimoni-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.2);
}

.testimoni-text {
  font-style: italic;
  color: #333;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 25px;
}

.testimoni-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background: linear-gradient(135deg, #ff6b9d, #c471ed);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
}

.testimoni-box:hover .avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.testimoni-user h4 {
  margin: 0;
  color: #222;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
}

.testimoni-user p {
  margin: 0;
  color: #777;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
}

/* === GALERI SECTION (SLIDER) === */
.galeri {
  background-color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container-galeri {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.judul-galeri {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d, #c471ed, #ff6b9d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  animation: shimmer 3s linear infinite;
  position: relative;
}

.subjudul-galeri {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #666;
  margin-bottom: 40px;
  padding: 0 20px;
  font-weight: 500;
}

.galeri-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.galeri-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 10px 30px;
  -webkit-overflow-scrolling: touch;
  width: 85%;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.galeri-slider::-webkit-scrollbar {
  display: none;
}

.galeri-item {
  min-width: calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  background: #f5f5f5;
}

.galeri-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.galeri-item:hover::before {
  opacity: 1;
}

.galeri-item::after {
  content: '🔍 Lihat';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 107, 157, 0.95);
  padding: 10px 24px;
  border-radius: 25px;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.galeri-item:hover::after {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25);
}

.galeri-item:hover img {
  transform: scale(1.08);
}

/* Tombol geser kiri kanan */
.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}

.slider-buttons button {
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  font-size: 24px;
  font-weight: 700;
  touch-action: manipulation;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.slider-buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 107, 157, 0.6);
  background: rgba(255, 64, 129, 0.98);
}

.slider-buttons button:active {
  transform: scale(0.95);
}

/* Slider Pagination Dots */
.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 10px 0;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 107, 157, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pagination-dot:hover {
  background: rgba(255, 107, 157, 0.6);
  transform: scale(1.2);
}

.pagination-dot.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #c239b3 100%);
  width: 16px;
  height: 16px;
  border-color: #ff6b9d;
  box-shadow: 0 0 12px rgba(255, 107, 157, 0.6);
}

.pagination-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s infinite;
}

/* Responsif Galeri */
@media (max-width: 1024px) {
  .galeri-item {
    min-width: calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    height: 280px;
  }
}

@media (max-width: 768px) {
  .galeri {
    padding: 60px 15px;
  }

  .galeri-slider {
    gap: 15px;
    padding: 15px 5px 25px;
  }

  .galeri-item {
    min-width: calc((100% - 30px) / 2);
    width: calc((100% - 30px) / 2);
    height: 280px;
  }

  .galeri-item::after {
    font-size: 0.85rem;
    padding: 6px 16px;
    bottom: 12px;
  }

  .slider-buttons {
    padding: 0 5px;
  }

  .slider-buttons button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .slider-pagination {
    gap: 8px;
    margin-top: 20px;
  }

  .pagination-dot {
    width: 10px;
    height: 10px;
  }

  .pagination-dot.active {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .galeri-slider {
    gap: 12px;
    padding: 15px 3px 25px;
  }

  .galeri-item {
    min-width: calc(100% - 24px);
    width: calc(100% - 24px);
    height: 320px;
  }

  .galeri-item::after {
    font-size: 0.9rem;
    padding: 8px 20px;
    bottom: 15px;
  }

  .slider-buttons {
    padding: 0 2px;
  }

  .slider-buttons button {
    width: 40px;
    height: 40px;
  }

  .slider-pagination {
    gap: 6px;
    margin-top: 15px;
  }

  .pagination-dot {
    width: 8px;
    height: 8px;
  }

  .pagination-dot.active {
    width: 12px;
    height: 12px;
    font-size: 18px;
    box-shadow: 0 3px 15px rgba(255, 107, 157, 0.4);
  }
}


/* === Bagian Kursus (Teks + Slider Samping) === */
.kursus {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff, #f9f1f4);
}

.container-kursus {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kursus-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.kursus-text {
  flex: 1;
  min-width: 280px;
}

.kursus-text h2 {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d, #c471ed, #ff6b9d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  animation: shimmer 3s linear infinite;
}

.kursus-text p {
  color: #444;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: manipulation;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

/* === Slider di samping teks === */
.kursus-slider {
  flex: 1;
  position: relative;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.kursus-slider:hover {
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.25);
}

.kursus-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.kursus-item {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.kursus-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 113, 237, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.kursus-slider:hover .kursus-item::before {
  opacity: 1;
}

.kursus-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.6s ease;
}

.kursus-slider:hover .kursus-item img {
  transform: scale(1.05);
}

/* Responsif */
@media (max-width: 900px) {
  .kursus-content {
    flex-direction: column;
    text-align: center;
  }
  
  .kursus-slider {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .kursus {
    padding: 60px 15px;
  }
  
  .kursus-item img {
    height: 250px;
  }
  
  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* === FOOTER STYLE FINAL === */
.footer {
  background-color: #222;
  color: white;
  padding: 10px 0 0;
  font-family: "Poppins", sans-serif;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
  padding: 40px 20px 50px;
  background-color: #222;
  color: white;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  padding: 0;
}

.footer-title {
  color: #ff80aa;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

/* Paragraf umum */
.footer-section p {
  line-height: 1.8;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #e0e0e0;
  margin-bottom: 10px;
}

.footer-section p strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

/* Menu navigasi di footer */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #ff80aa;
  padding-left: 5px;
}

/* Kolom kontak (alamat, telp, email) */
.footer-contact p {
  line-height: 1.8;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #e0e0e0;
  margin-bottom: 12px;
}

/* ✨ Perataan ikon sosial agar sejajar */
.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* Gaya ikon */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 128, 170, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 128, 170, 0.3);
  transform: translateY(-3px);
}

.social-icons a svg {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  background-color: #1a1a1a;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #bbb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 30px 20px 40px;
  }

  .footer-section {
    margin-bottom: 10px;
  }

  .footer-section ul {
    margin: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-title {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 0;
    margin-top: 40px;
  }
  
  .footer-container {
    padding: 25px 15px 35px;
    gap: 25px;
  }

  .footer-section ul li {
    margin: 8px 0;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a svg {
    width: 22px;
    height: 22px;
  }

  .footer-bottom {
    padding: 15px;
  }
}


/* === ABOUT SECTION === */
.about-section {
  width: 90%;
  max-width: 1200px;
  margin: 120px auto 80px;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image img {
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2,
.about-title {
  color: #ff2e7e;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-pink {
  display: inline-block;
  background-color: #ff2e7e;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-pink:hover {
  background-color: #e91e63;
  transform: scale(1.05);
}


/* === SERVICES SECTION === */
.services {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
}

.service-card {
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 3px solid #ffe6ef;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  color: #ff4081;
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.service-card p {
  color: #555;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta {
  background-color: #ff4081;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

.cta h2 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin-bottom: 20px;
}

.cta a {
  background-color: white;
  color: #ff4081;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.cta a:hover {
  background-color: #ffe6ef;
  transform: translateY(-2px);
}

/* === CONTACT SECTION === */
.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 120px auto 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-container form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-container form h3 {
  color: #ff2e7e;
  margin-bottom: 5px;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.contact-container input,
.contact-container textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-family: "Poppins", sans-serif;
}

.contact-container button {
  background-color: #ff2e7e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  transition: 0.3s;
}

.contact-container button:hover {
  background-color: #e91e63;
  transform: scale(1.03);
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h3 {
  color: #ff2e7e;
  margin-bottom: 15px;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.contact-info p {
  color: #555;
  margin-bottom: 10px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.6;
}

.contact-info i {
  color: #ff2e7e;
  margin-right: 8px;
}

.contact-info iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  margin-top: 15px;
  border: none;
}

/* === GALLERY PAGE === */
.gallery-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
  color: #ff4081;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 20px;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10000;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ff4081;
  transform: translateY(-50%) scale(1.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 157, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 157, 0.6); }
}

/* === ANIMASI FADE IN FOOTER === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  } 
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out forwards;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Medium Screen - 4 kolom */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  /* Header & Navigation */
  header {
    padding: 12px 0;
  }
  
  .container {
    width: 95%;
  }
  
  .logo {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.4s ease;
    z-index: 99;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav a {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  nav a:hover,
  nav a.active {
    background: rgba(255, 64, 129, 0.2);
    color: #ff4081;
  }
  
  /* Hero adjustments */
  .hero {
    height: 70vh;
    min-height: 450px;
  }
  
  .content {
    width: 95%;
    padding: 15px;
  }
  
  /* Testimoni */
  .testimoni {
    padding: 60px 15px;
  }
  
  .judul-testimoni {
    margin-bottom: 30px;
  }
  
  .testimoni-wrapper {
    gap: 20px;
  }

  /* Gallery - 3 kolom di tablet */
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item img,
  .gallery-item video {
    height: 300px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
  }
  
  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  
  nav {
    width: 85%;
  }
  
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  .testimoni {
    padding: 50px 10px;
  }
  
  .testimoni-box {
    padding: 25px 20px;
  }

  .about-section,
  .contact-container {
    width: 95%;
    padding: 30px 20px;
    margin: 80px auto;
  }

  .service-container {
    grid-template-columns: 1fr;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img,
  .gallery-item video {
    height: 280px;
  }

  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2.5rem;
    padding: 15px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* Mobile Extra Small - 1 kolom */
@media (max-width: 360px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

/* Desktop Large */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .content h1 {
    font-size: 3.5rem;
  }
  
  .content p {
    font-size: 1.3rem;
  }
}
