body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1b1b1b;
  color: #f5f5dc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #774b1e;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #f5f5dc;
}

.logo-img {
  width: 50px;
  height: 47px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #f5f5dc;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #a47149;
}
.contact-photo {
  text-align: center;
  margin-bottom: 30px;
}

.contact-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #a47149;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #1b1b1b;
}

.section-title {
  font-size: 32px;
  text-align: center;
  color: #1b1b1b;
  margin-bottom: 40px;
}

.highlight {
  color: #a47149;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.sosmed, .form-contact, .service-fee {
  background-color: #a47149;
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  color: #fff;
}

.sosmed ul, .service-fee ul {
  list-style: none;
  padding-left: 0;
}

.sosmed ul li, .service-fee ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.sosmed a, .service-fee a {
  color: #000;
  text-decoration: underline;
}

.form-contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contact input,
.form-contact textarea {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.form-contact button {
  background-color: #000000;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-contact button:hover {
  background-color: #5c3920;
}

/* Footer */
footer {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #a47149;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
}

.footer-icons a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.footer-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #000000;
  margin: 0;
}
.service-fee {
  margin-top: 40px;
}

.fee-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.fee-card {
  background-color: #fff7f0;
  border: 1px solid #e0cfc0;
  padding: 20px;
  flex: 1 1 250px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.fee-card:hover {
  transform: translateY(-5px);
}

.fee-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  color: #a0764f;
  margin-bottom: 8px;
}

.fee-card p {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}

.sosmed {
  margin-top: 30px;
}

.sosmed-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.sosmed-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff7f0;
  padding: 10px 15px;
  border: 1px solid #e0cfc0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}


.sosmed-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sosmed-card span {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.card-style {
  background-color: #fff7f0;
  border: 1px solid #e0cfc0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card-style:hover {
  transform: translateY(-4px);
}

.form-style {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-style input,
.form-style textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.form-style input:focus,
.form-style textarea:focus {
  border-color: #a47149;
}

.form-style button {
  background-color: #a47149;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-style button:hover {
  background-color: #5c3920;
}
.form-contact {
  background-color:  #5c3920;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 300px;
  color: #333;
}

.form-contact h3 {
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  color: #ffffff;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #5c3920;
}

.form-contact input,
.form-contact textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.form-contact textarea {
  resize: vertical;
  min-height: 100px;
}

.form-contact button {
  background-color: #a47149;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.form-contact button:hover {
  background-color: #000000;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 25px;
  }

  .contact-photo img {
    width: 140px;
    height: 140px;
  }

  .section-title {
    font-size: 24px;
  }

  .sosmed,
  .form-contact,
  .service-fee {
    padding: 15px;
    min-width: 100%;
  }

  .form-contact {
    padding: 20px;
  }

  .form-contact h3 {
    font-size: 20px;
  }

  .form-contact button {
    font-size: 15px;
    padding: 10px;
  }

  .sosmed-card span,
  .service-fee ul li,
  .fee-card p {
    font-size: 14px;
  }

  .fee-cards {
    flex-direction: column;
  }

  .fee-card {
    width: 100%;
    padding: 15px;
  }

  .footer-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav ul li a {
    font-size: 18px;
    padding: 6px 0;
  }
}
