/* RESET DASAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(160deg, #121212, #1a1a1a);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* HEADER */
.full-header {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 60px;
  margin-right: 15px;
}

.brand-text {
  font-size: 1.8rem;
  color: #111;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffffff;
}

/* KONTEN TESTIMONI */
.testimoni-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.testimoni-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #ffd700;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimoni-card {
  background: #000000;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimoni-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(250, 142, 0, 0.6);
}

.testimoni-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid #ffd700;
}

.testimoni-card p {
  font-size: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #ffffff;
}

.testimoni-card h4 {
  font-size: 1.1rem;
  color: #b8860b;
  margin-top: 1rem;
}

.testimoni-card .rating-bintang {
  margin-top: 5px;
}

.testimoni-card .rating-bintang img {
  width: 16px;
  height: 16px;
  margin-right: 2px;
  vertical-align: middle;
  filter: drop-shadow(0 0 1px #888);
}
.foto-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.foto-profil {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #eee;
  border: 2px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}



/* FOOTER */
.footer {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #111;
  padding: 2rem 1rem 1rem;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

.footer-left h4, .footer-left p, .footer-left a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.footer-socials a {
  color: #111;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.9rem;
  margin-top: 1rem;
}
