* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #ffffff; 
}


/* HEADER FIX */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 0.9),
    rgba(30, 30, 30, 0)
  ); /* gradasi pudar ke transparan */
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #ff5c33;
  text-decoration: none;
}

.brand-bold {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ff5c33;
}

.brand-light {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #fff;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff5c33;
  transition: width 0.3s;
  position: absolute;
  bottom: -6px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

.header-button {
  background-color: #ff5c33;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: lighter;
  text-decoration: none;
  transition: background 0.3s;
}

.header-button:hover {
  background-color: #e94e25;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.98);
  height: 100%;
  width: 70%;
  max-width: 300px;
  z-index: 1001;
  padding: 60px 20px;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  margin: 15px 0;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #ff5c33;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}


/* Navbar Responsive Behavior */
@media (max-width: 768px) {
  nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-button{
    display: none !important;
  }
}

/* HERO SECTION FIX */
.hero {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 100px; /* atau setinggi header */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: white;
  text-align: left;
}

.hero_image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.hero_content {
  z-index: 2;
  padding-left: 5%;
  max-width: 600px;
  padding-top: 0px; /* untuk memberi jarak dari header transparan */
  font-family: 'Inter', sans-serif;
}

.hero_content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  letter-spacing: -1px;
  display: inline-block;
}

.highlight {
  color: #ff5c33;
}

.hero_content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.btn_utama {
  background-color: #ff5c33;
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn_utama:hover {
  background-color: #e6451a;
}

/*480px*/
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .navbar-logo {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .navbar-menu {
    gap: 15px;
    width: 100%;
    align-items: flex-start;
  }

  .navbar-menu a {
    font-size: 15px;
    padding: 5px 0;
  }

  .btn_utama {
    font-size: 14px;
    padding: 10px 22px;
    margin-top: 10px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 30px;
    justify-content: flex-start;
  }

  .hero_content {
    padding: 0 20px;
    max-width: 100%;
    text-align: center;
  }

  .hero_content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero_content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* TENTANG KAMI */
.identity {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.identity_about h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #cc3a1e;
  font-weight: 700;
  white-space: normal;
  text-align: center;
}

.identity_about p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
}

.gambar_identity img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .gambar_identity img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 768px) {
  .identity {
    flex-direction: row;
    align-items: center;
  }

  .identity_about, .gambar_identity {
    flex: 1;
  }

  .identity_about p {
    text-align: left;
    padding: 0;
  }

  .identity_about h1 {
    text-align: left;
  }

  .gambar_identity img {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .identity {
    flex-direction: row;
    align-items: center;
  }

  .identity_about, .gambar_identity {
    flex: 1;
  }

  .identity_about p {
    text-align: left;
    padding: 0;
  }

  .identity_about h1 {
    text-align: left;
  }

  .gambar_identity img {
    max-width: 500px;
  }
}


/* RESPONSIVE TWEAKS 768-1024*/
@media (min-width: 769px) and (max-width: 1024px) {
  .hero_content h1 {
    font-size: 40px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .fitur, .layanan {
    flex-direction: column;
    text-align: center;
  }

  .fitur_konten, .fitur_image,
  .layanan_konten, .layanan_image {
    width: 100%;
  }

  .identity {
    flex-direction: column;
    padding: 30px 20px;
  }

  .identity_about, .gambar_identity {
    width: 100%;
    text-align: center;
  }

  .produkcta h1 {
    font-size: 32px;
  }
}

.identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.identity_about {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.identity_about h1 {
  font-size: 2rem;
  color: #ff5722;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 15px;
}

.identity_about p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: lighter;
  color: #333;
  margin-bottom: 10px;
}

.gambar_identity {
  width: 45%;
}

.gambar_identity img {
  width: 100%;
  border-radius: 10px;
}

.alasan {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8;
}

/*RESPONSIVE*/
@media (max-width: 768px) {
  .identity_about {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
    padding: 0 10px;

  }

  .gambar_identity {
    width: 100%;
  }
}

.alasan h1 {
  font-size: 2rem;
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}

.alasan p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.feature h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 30px;
  }
}

.fitur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  flex-wrap: nowrap;
  gap: 20px;
}

.fitur_konten {
  min-width: 300px;
  width: 50%;
  flex: 1;
}

.fitur_konten h1 {
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}

.fitur_konten p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fitur_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.fitur_item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.fitur_item h2 {
  font-size: 18px;
  color: #d65a5a;
  font-weight: bold;
  margin-bottom: 5px;
}

.fitur_item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.fitur_image {
  min-width: 300px;
  width: 45%;
  flex: 1;
}

.fitur_image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

.layanan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  flex-wrap: nowrap;
  gap: 20px;
}

.layanan_image {
  width: 45%;
  min-width: 300px;
  flex: 1;
}

.layanan_image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

.layanan_konten {
  width: 50%;
  min-width: 300px;
  flex: 1;
}

.layanan_konten h1 {
  font-size: 28px;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 10px;
}

.layanan_konten p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.layanan_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.layanan_item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.layanan_item h2 {
  font-size: 18px;
  color: #e74c3c;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: "Ubuntu", sans-serif;
}

.layanan_item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.price-list {
  padding: 60px 5%;
  background-color: #fefefe;
  color: #1e1e1e;
  text-align: center;
}

.price-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff5c33;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.price-card-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  max-width: 320px;
  flex: 1 1 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-cerita {
  min-width: 320px;
}

.full-width {
  max-width: 350px;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.price-card h3 {
  font-size: 20px;
  color: #ff5c33;
  margin-bottom: 10px;
}

.price-card h3 span {
  font-size: 14px;
  color: #666;
  display: block;
}

.price-card .price {
  font-size: 18px;
  font-weight: bold;
  color: #1e1e2f;
  margin: 15px 0;
}

.price-card ul {
  padding-left: 20px;
}

.price-card ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .price-card-row {
    flex-direction: column;
    align-items: center;
  }
  .full-width {
    max-width: 100%;
  }
}

.produkcta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(135deg, #333131 0%);
  color: #F5F5F5;
}

.produkcta h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.produkcta p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.produkcta .produkctabutton {
  background-color: #ff5c33;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.produkcta .produkctabutton-button:hover {
  background-color: #E0E0FF;
  color: #000000;
}

.footer {
  background-color: #333131;
  color: #f1f1f1;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #ff5c33;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffa07a;
}

.footer-links {
  margin-bottom: 20px;
}

.footer p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}

.footer-links a {
  color: #ff5c33;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffa07a;
}

.footer-socials {
  margin: 20px 0;
}

.footer-socials a {
  display: inline-block;
  margin: 0 10px;
  color: #f1f1f1;
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ff5c33;
}

.footer p {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
}

.features,
.identity,
.fitur,
.layanan {
  flex-wrap: wrap;
}

.identity_about, .gambar_identity,
.fitur_konten, .fitur_image,
.layanan_konten, .layanan_image {
  max-width: 100%;
}
