 /* ===== GLOBAL ===== */
    * { box-sizing: border-box; }
    body {
      margin: 0;
      overflow-x: hidden;
      font-family: "Poppins", sans-serif;
      background: #fff5fa;
      color: #e0568f;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ===== NAVBAR ===== */
   .navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff7fb;
  box-shadow: 0 2px 8px rgba(77, 49, 49, 0.05);
  z-index: 999;
}

.nav-container {
  max-width: 1390px;
  width: 100%;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img { width: 65px; }
.brand-text {
  font-size: 22px;
  font-weight: 600;
  color: #e0568f;
  white-space: nowrap;
}

  .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #e0568f;
  font-weight: 600;
  transition: 0.3s;
}
    .nav-links a:hover { color: #ff7fbf; }

    /* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  padding: 6px 12px;
  background: #ffe3ef;
  color: #e0568f;
  z-index: 9999;
  border-radius: 20px;
}

    /* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row; /* tetap horizontal */
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .service-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 18px; }
  .logo-img { width: 50px; }
  .brand-text { font-size: 15px; }
  .menu-toggle { display: flex; }
  .menu-text { font-size: 16px; }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 14px; }

.nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: #fff7fb;
    width: 100%;
    max-width: 220px;
    padding: 10px;
    gap: 10px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .menu-text { font-size: 16px; }
  .nav-links.active { display: flex; }

}
/* ===== ABOUT ===== */

.about{
padding:80px 20px;
background:#f7eef2;
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
gap:60px;
align-items:center;
flex-wrap:wrap;
}


/* ===== GALLERY ===== */

.about-gallery{
flex:1;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.about-gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.about-gallery img:hover{
transform:scale(1.05);
}


/* ===== TEXT ===== */

.about-text{
flex:1;
}

.about-text h2{
font-size:36px;
margin-bottom:10px;
}

.about-text h4{
font-weight:500;
margin-bottom:20px;
color:#ff7fbf;
}

.about-text p{
line-height:1.7;
margin-bottom:20px;
color:#555;
}


/* ===== STATS ===== */

.about-stats{
display:flex;
gap:20px;
margin-top:30px;
}

.stat-box{
background:white;
padding:20px;
border-radius:15px;
text-align:center;
flex:1;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.stat-box h3{
margin:0;
font-size:28px;
color:#ff5fa2;
}

.stat-box span{
font-size:14px;
color:#777;
}

/* ===== ABOUT SECTION ===== */

.about {
  padding: 80px 20px;
  background: #f7eef2;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* FOTO */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 42px;
  color: #d63384;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  color: #e0568f;
  margin-bottom: 10px;
}

.about-text h3 {
  color: #ff4da6;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text h4 {
  font-size: 18px;
  color: #c94f7c;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.stat-box h3 {
  color: #e0568f;
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.about-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-gallery img:hover {
  transform: scale(1.05);
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-gallery img {
  height: 200px;
  border-radius: 12px;
}


/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background: #fff7fb;
  padding: 18px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #ff5fa2;
  margin: 0;
}

