* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONT */
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fb;
  color: #333;
}

/* ================= HEADER IMAGE ================= */

.header-image{
  height:765px;
}

.header-image img{
  object-fit:cover;
  object-position:center center;
  size: cover;
}

.header-overlay{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.35);

  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;

  color:white;
  text-align:center;
}

/* GAMBAR */
.header-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================= NAVBAR ================= */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ffe552, #777924);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo img {
  height: 45px;
}

/* MENU */
.menu {
  display: flex;  
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.menu a:hover {
  background: rgba(255,255,255,0.2);
}

/* ================= LAYOUT ================= */
.row {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.leftcolumn {
  width: 75%;
}

.rightcolumn {
  width: 25%;
}

/* ================= CARD ================= */
.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= HOME (AESTHETIC) ================= */
.hero {
  background: linear-gradient(135deg, #ffe552, #777924);
  color: white;
  padding: 50px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: center;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  text-align: center;
}

.features h3 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.features p {
  text-align: center;
}
 
.features i {
  margin: 10px;
  font-size: 2.3rem;
}

.cta {
  text-align: center;
  margin: 50px 0;
  padding: 40px 20px;
  background: linear-gradient(135deg, #777924);
  border-radius: 15px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

/* BUTTON CTA */
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  color: #0d47a1;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER EFFECT */
.cta-btn:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

/* ================= ABOUT PRO MAX ================= */
.about-hero {
  background: linear-gradient(135deg, #777924);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 40px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CONTAINER */
.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #0d47a1;
  margin-bottom: 15px;
  text-align: center;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.about-badge {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 10px;
  color: #0d47a1;
  font-weight: 500;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat h3 {
  font-size: 2rem;
  color: #1976d2;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= PRODUCT ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.grid .item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.grid .item:hover {
  transform: translateY(-5px);
}

/* GAMBAR */
.grid .item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* DETAIL */
.item-detail {
  padding: 20px;
  text-align: center;
}

.item-detail h3 {
  color: #0d47a1;
  margin-bottom: 10px;
}

/* DESKRIPSI */
.desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

/* HARGA */
.price {
  font-weight: bold;
  color: #1976d2;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-layanan {
  display: inline-block;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-layanan:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
/* ================= PELAYANAN ================= */

.pelayanan{
  padding: 80px 8%;
  background: #f5f7fb;
}

/* ================= TITLE ================= */

.pelayanan-title{
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #777924;
  margin-bottom: 20px;
}

.pelayanan-title::after{
  content: "";

  width: 100px;
  height: 4px;

  background: linear-gradient(
    90deg,
    #ffe552,
    #777924
  );

  display: block;
  margin: 15px auto 0;

  border-radius: 20px;
}

/* ================= SUBTITLE ================= */

.pelayanan-subtitle{
  text-align: center;

  max-width: 850px;

  margin: auto auto 60px;

  color: #666;

  line-height: 1.9;

  font-size: 1rem;
}

/* ================= GRID ================= */

.about-features{
  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap: 30px;
}

/* ================= CARD ================= */

.feature-card{
  background: white;

  border-radius: 25px;

  padding: 40px 25px;

  text-align: center;

  transition: 0.35s;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.08);

  overflow: hidden;

  position: relative;
}

/* EFFECT */

.feature-card::before{
  content: "";

  position: absolute;

  top: -70px;
  right: -70px;

  width: 170px;
  height: 170px;

  background:
  rgba(119,121,36,0.06);

  border-radius: 50%;
}

/* HOVER */

.feature-card:hover{
  transform:
  translateY(-10px);

  box-shadow:
  0 18px 35px rgba(0,0,0,0.15);
}

/* ================= ICON ================= */

.feature-card i{
  width: 90px;
  height: 90px;

  line-height: 90px;

  border-radius: 50%;

  background:
  rgba(119,121,36,0.1);

  color: #777924;

  font-size: 2.4rem;

  margin-bottom: 22px;

  position: relative;
  z-index: 2;

  transition: 0.35s;
}

/* ICON HOVER */

.feature-card:hover i{
  transform: scale(1.08);
}

/* ================= TITLE CARD ================= */

.feature-card h4{
  font-size: 1.35rem;

  color: #333;

  margin-bottom: 15px;

  line-height: 1.5;

  position: relative;
  z-index: 2;
}

/* ================= TEXT ================= */

.feature-card p{
  font-size: 0.96rem;

  color: #666;

  line-height: 1.9;

  margin-bottom: 28px;

  position: relative;
  z-index: 2;
}

/* ================= BUTTON ================= */

.feature-card .btn-pelayanan{
  display: inline-block;

  padding: 14px 34px;

  background:
  linear-gradient(
    135deg,
    #34d96d,
    #27c95d
  );

  color: white !important;

  text-decoration: none;

  border-radius: 50px;

  font-size: 1rem;

  font-weight: 500;

  transition: 0.3s ease;

  box-shadow:
  0 8px 20px rgba(52,217,109,0.28);

  position: relative;
  z-index: 2;
}

/* LINK */

.feature-card .btn-pelayanan:visited{
  color: white !important;
}

.feature-card .btn-pelayanan:hover{
  color: white !important;

  background:
  linear-gradient(
    135deg,
    #27c95d,
    #1fb653
  );

  transform:
  translateY(-3px);

  box-shadow:
  0 14px 28px rgba(52,217,109,0.4);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .pelayanan{
    padding: 60px 20px;
  }

  .pelayanan-title{
    font-size: 2rem;
  }

  .pelayanan-subtitle{
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .about-features{
    grid-template-columns: 1fr;
  }

  .feature-card{
    padding: 35px 22px;
  }

  .feature-card i{
    width: 80px;
    height: 80px;

    line-height: 80px;

    font-size: 2rem;
  }

  .feature-card .btn-pelayanan{
    width: 100%;
    text-align: center;
  }

}

/* ================= FOOTER PRO ================= */
.footer {
  background: #777924;
  color: white;
  margin-top: auto;
}

/* Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 60px;
  gap: 30px;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
}

/* Section */
.footer-section h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.9rem;
  margin: 5px 0;
  opacity: 0.9;
}

/* Icon */
.footer-section i {
  margin-right: 8px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #777924;
  font-size: 0.9rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #777924;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

.text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 25px;
  background: #1ebe5d;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.text p {
  margin-bottom: 15px;
}

/* HOVER EFFECT HALUS */
.text:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* ================= CONTACT ================= */
.contact-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
}

/* Deskripsi */
.contact-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Item kontak */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

/* Icon */
.contact-item i {
  color: #0d47a1;
  font-size: 1.2rem;
}

/* BUTTON */
.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

/* Hover effect */
.contact-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

.location-box {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* Judul */
.location-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d47a1;
}

/* Map */
.map iframe {
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Alamat */
.alamat {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

/* Icon */
.location-box i {
  color: #0d47a1;
  margin-right: 5px;
}

/* JAM BOX */
.card .jam-box {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* TEXT */
.card .jam-box p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* ICON */
.card .jam-box i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* HOVER EFFECT */
.card .jam-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* ================= RESPONSIVE ================= */
/* ================= MEDIA QUERIES (Khusus Mobile) ================= */
@media (max-width: 768px) {

  .pelayanan {
    padding: 40px 15px;
  }

  .pelayanan-title {
    font-size: 1.8rem;
  }

  .pelayanan-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 35px 20px;
  }

  .feature-card i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
  }

  .feature-card .btn-pelayanan {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    gap: 25px;
  }

} /* <--- PERHATIKAN INI: Kurung kurawal ini WAJIB ada di paling akhir file untuk menutup `@media` */
