* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1b0a2e; /* ungu gelap */
  color: #eee;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.section {
  padding: 4rem 2rem;
  text-align: center;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('back.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: -1;
}
.hero-content {
  padding: 2rem;
  z-index: 2;
}
.background-blur {
  background: url('back.png') no-repeat center center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  text-align: center;
  max-width: 800px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease-in-out;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #eee;
  margin-top: 1rem;
}
.cta {
  display: inline-block;
  margin-top: 2rem;
  background: #6a0dad;
  padding: 0.75rem 1.5rem;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta:hover {
  background: #ff1744;
  box-shadow: 0 0 10px #ff1744;
}
.feature {
  background: #1e1e1e;
  padding: 1.5rem;
  margin: 1rem;
  border-left: 4px solid #00bcd4;
  width: 250px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 0, 102, 0.3);
}
.feature-card i {
  font-size: 2.5rem;
  color: #e91e63;
  margin-bottom: 1rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}
.card h3 {
  font-size: 1.5rem;
  color: #ff1744;
}
.price {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 1rem 0;
}


.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.card ul li {
  margin-bottom: 0.5rem;
}

.footer {
  background: linear-gradient(to right, #6a0dad, #e91e63);
  color: #fff;
  padding: 3rem 1rem 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.footer-content div {
  flex: 1 1 250px;
}
.footer h3, .footer h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-content.two-column {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.footer-content.two-column > div {
  flex: 1 1 45%;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 1rem;
  color: #f0f0f0;
}
.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.footer p, .footer h4 {
  color: #f0f0f0;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('back.png') no-repeat center center/cover;
  filter: blur(8px);
  z-index: -2;
}
.gallery {
  overflow: hidden;
}
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slide-track {
  display: flex;
  animation: slide 30s linear infinite;
}
.slide-track img {
  height: 200px;
  margin: 0 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.slide-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 64, 129, 0.3);
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* Teks utama */
h1, h2, h3, p, li {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* Perjelas teks di dalam card */
.card, .feature-card {
  color: #f0f0f0;
}

/* Teks pada tombol CTA */
.cta {
  color: #fff;
  font-weight: bold;
}
.card, .feature-card {
  background-color: rgba(0, 0, 0, 0.4); /* lebih gelap */
  backdrop-filter: blur(6px);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}
.contact-map, .contact-info {
  flex: 1 1 45%;
}
.contact-map iframe {
  min-height: 400px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 0.8rem;
  color: #f0f0f0;
}
.contact-info a.cta {
  display: inline-block;
  margin-top: 1rem;
  background: #e91e63;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-info a.cta:hover {
  background: #d81b60;
}

