:root {
  --blue: #1e3a8a;
  --yellow: #fbbf24;
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --magenta: #D23C77;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background: linear-gradient(135deg, #f0faff 0%, #e0f2fe 100%);
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--magenta);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== Layanan Section ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--yellow);
}

/* ===== Tentang Kami ===== */
.about {
  padding: 80px 5%;
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: var(--blue);
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--yellow);
}

.about-desc p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}

.highlight {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 500;
}

.mission {
  font-style: italic;
  background: rgba(251, 191, 36, 0.1);
  padding: 20px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--blue);
  margin-bottom: 5px;
}

.feature-text p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.9rem;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* ===== Lokasi Section ===== */
.location {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f0faff 0%, #e0f2fe 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.address {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444;
}

.map-button {
  margin-top: 20px;
  align-self: flex-start;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-container,
  .location-content {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .location h2 {
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .address {
    order: 2;
    margin-top: 30px;
  }

  .map-container {
    order: 1;
  }
}
.about-content h2 {
  font-size: 2.2rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-icon {
  font-size: 2rem;
  background-color: var(--light-gray);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.highlight strong {
  background-color: rgba(30, 58, 138, 0.05);
  padding: 3px 6px;
  border-radius: 4px;
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate.fade-up {
  transform: translateY(20px);
}

.animate.zoom-in {
  transform: scale(0.9);
}

.animate.fade-in {
  transform: none;
}

.animate.visible {
  opacity: 1;
  transform: none;
}
.testimonials {
  padding: 80px 5%;
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  color: var(--blue);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.testimonial-card {
  background: var(--light-gray);
  border-left: 5px solid var(--yellow);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author span {
  font-weight: 500;
  color: var(--blue);
}
.team {
  padding: 80px 5%;
  background-color: var(--light-gray);
}

.team-content h2 {
  text-align: center;
  color: var(--blue);
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.team-desc {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #444;
  line-height: 1.6;
}

.team-desc strong {
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

.team-profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.profile {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 240px;
  transition: transform 0.3s ease;
}

.profile:hover {
  transform: translateY(-8px);
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile h4 {
  color: var(--blue);
  margin-bottom: 5px;
}

.profile p {
  color: #666;
  font-size: 0.95rem;
}
