/* --- Logo Wrapper --- */
.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  max-height: 50px; /* Sesuaikan tinggi logo */
  height: auto;
  width: auto;
  transition: all 0.3s ease-in-out;
}

/* Layanan Section */
.tab-pane {
  border: 2px solid;
  border-radius: 8px; /* opsional kalau mau sudut melengkung */
  padding: 10px;      /* biar isi ga nempel ke border */
}

.services-tab img {
  width: 100%; 
  height: auto;
  object-fit: contain; 
  display: block;   
}

/* Langganan Section */
.marquee-tag img {
  max-width: 75px;
  height: auto;      
}

/* FAQ Section*/
.accordion-item,
.accordion-button,
.accordion-body {
  background-color: #000 !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed) {
  background-color: #111 !important;
  color: #fff !important;
  box-shadow: none;
}

/* Kontak Section */
/* Warna teks di dalam input dan textarea */
.form-control,
.get-in-touch form .form-control {
  color: #fff !important; /* teks putih */
}

/* Warna placeholder (Name, Email, Pesan) */
.form-control::placeholder,
.modal-fade form,
.get-in-touch form .form-control::placeholder {
  color: #ccc !important; /* placeholder abu-abu muda */
}