/* 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;
}

/* SECTION JASA */
.jasa-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.jasa-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
}

.jasa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.jasa-card {
  background: #000000;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jasa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(239, 145, 3, 0.6);
}

.jasa-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jasa-card-content {
  padding: 1.5rem;
}

.jasa-card-content h3 {
  font-size: 1.5rem;
  color: #ffb700;
  margin-bottom: 1rem;
}

.jasa-card-content p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.btn-jasa {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #ffd700;
  color: #111;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-jasa:hover {
  background: #694d06;
  color: #fff;
}

/* 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;
}
