@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #28add6;
  --primary-light: #33c3f1;
  --dark-blue: #001a3d;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f9fbfc;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ==== HEADER ==== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--text-light);
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  max-width: 1200px;
  margin: auto;
}

/* === Efek Blur Header Saat Scroll === */
header.scrolled {
  background-color: rgba(40, 173, 214, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.logo-img {
  height: 55px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: white;
  font-size: 1em;
  padding: 8px 0;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-menu a:hover {
  color: white;
  border-bottom: 2px solid white;
}

.nav-menu a.active {
  border-bottom: 2px solid white;
  font-weight: 600;
}

/* ==== HAMBURGER MENU ==== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 3001;
}

.menu-toggle span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==== HERO SECTION ==== */
.hero {
  background: url('https://images.unsplash.com/photo-1541807084-5c52b6b3adef?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')
    center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  text-align: center;
  margin-top: 70px; /* kompensasi header fixed */
  padding-top: 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.hero-images {
  display: flex;
  gap: 20px;
}

.hero-images img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.hero-images img.toshiba {
  width: 150px;
}

 .background-hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('https://images.unsplash.com/photo-1629904869392-ae2a682d4d01?q=80&w=1476&auto=format&fit=crop') center/cover no-repeat;
  min-height: 100vh;
  padding: 120px 20px 80px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Judul utama di hero */
.background-content {
  margin-bottom: 40px;
}

.background-content1 {
  margin-top: 40px;
}

.background-content1 h1 {
  font-size: 1.6em;
  margin-top: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.background-hero h1 {
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 50px;
}

/* Bagian "Cara Pemesanan" */
.cara-pemesanan-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 50px 40px;
  max-width: 1000px;
  width: 100%;
  color: #001144;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.cara-pemesanan-container:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.step {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-number {
  background: linear-gradient(135deg, #28add6, #1e90ff);
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.step h3 {
  font-size: 1.15em;
  color: #002347;
  margin-bottom: 10px;
  font-weight: 700;
}

.step p {
  font-size: 0.98em;
  color: #444;
  line-height: 1.7;
}

/* Tombol WA */
.cara-pemesanan-container .btn-wa {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 35px;
  font-size: 1.1em;
  border-radius: 40px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cara-pemesanan-container .btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

  .catalog-clean {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
  }
  
  .catalog-clean .item {
    text-align: center;
    max-width: 220px;
    flex: 1 1 200px;
  }
  
  .catalog-clean .item img {
    width: 100%; /* WAS: 150% */
    max-height: 250px;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
  }
  
  .catalog-clean .item h4 {
    font-size: 1.125em;
    font-weight: bold;
    color: #001144;
    margin-top: 10px;
    line-height: 1.4;
    text-align: center;
  }

  .catalog-clean .item:hover {
    transform: translateY(-5px);
}

  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .card h3 {
    font-size: 1.25em;
    margin-top: 0;
    color: #00695c;
  }

.konsultasi {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.konsultasi-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.konsultasi-image img {
  max-width: 200px;
  margin-bottom: 20px;
}

.konsultasi-text {
  max-width: 800px;
  padding: 20px;
}

.konsultasi-text h1 {
  font-size: 2em;
  color: #001144;
  text-shadow: 1px 1px #ccc;
  margin-bottom: 20px;
}

.konsultasi-text p {
  font-size: 1.125em;
  color: #444;
  margin-bottom: 20px;
}

.intro-jakarta {
  background-color: #ffffff; /* warna latar mirip krem */
  padding: 60px 20px;
  text-align: center;
}

.intro-jakarta h1 {
  color: #001144;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}

.intro-jakarta p {
  text-align: justify;
  font-size: 1.125em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.intro-jakarta .container {
  max-width: 900px;
  margin: 0 auto;
}

.benefit-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #004d40;
  font-family: 'Segoe UI', sans-serif;
}

.benefit-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #001144;
}

.benefit-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.benefit-list li {
  font-size: 1em;
  background: #e0f2f1;
  margin-bottom: 20px;
  padding: 20px;
  border-left: 6px solid #25cfbe;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

  .btn-wa {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  border: 2px solid green;
  color: green;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  background-color: green;
  color: white;
}

.footer {
  background-color: #28add6;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #222;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid black;
  margin: 0 10px;
}

.footer-divider .footer-icon {
  font-size: 18px;
  color: #444;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 200px;
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  background-color: #2a9d8f;
  color: #fff;
  padding: 8px;
  border-radius: 3px;
  font-size: 14px;
  text-decoration: none;
}

/*TENTANG KAMI*/
.tentang-kami {
  background-color: #f9fbfc;
  padding: 100px 20px;
  color: #002244;
  display: flex;
  justify-content: center;
}

.tentang-kami .container {
  max-width: 1100px;
  width: 100%;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #001a3d;
  letter-spacing: 1px;
  margin-bottom: 65px; /* tambahkan sedikit jarak ke konten di bawah */
  position: relative;
  padding-bottom: 15px; /* jarak antara teks dan garis bawah */
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 20px auto 0; /* atur jarak dari teks ke garis */
  border-radius: 2px;
}


.tentang-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.tentang-text {
  flex: 1 1 500px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.tentang-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.tentang-text p {
  margin-bottom: 15px;
}

.tentang-text strong {
  color: #004c80;
}

.tentang-image {
  flex: 1 1 400px;
  text-align: center;
}

.tentang-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tentang-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* === SEJARAH SECTION === */
.tentang-kami:nth-of-type(2) {
  background-color: #ffffff;
  padding: 80px 20px;
}

.tentang-kami:nth-of-type(2) .tentang-text {
  background: #f0faff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/*BLOG*/
.halaman-blog {
  padding: 100px 20px;
  background-color: #ffffff;
}

.halaman-blog .section-title {
  text-align: center;
  font-size: 2em;
  color: #003d4d;
  margin-bottom: 10px;
}

.blog-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.3em;
  color: #002d3d;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: #555;
  font-size: 1em;
  line-height: 1.6;
}

.blog-link {
  display: inline-block;
  margin-top: 10px;
  color: #008080;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-link:hover {
  color: #004d4d;
}


.footer-info {
  display: flex;
  flex: 3 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px 20px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #111;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #000000;
  margin-top: 30px;
  padding-top: 20px;
}

/* Font Awesome (load via CDN) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

.blog-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.blog-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 30px;
  position: relative;
}

.blog-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-image: repeating-linear-gradient(
    45deg,
    #001144,
    #001144 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 10px auto 0;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 18px;
  padding: 15px 15px 5px;
  margin: 0;
  color: #001144;
}

.blog-card .excerpt {
  font-size: 15px;
  padding: 10px 15px;
  color: #333;
}

.read-more {
  display: inline-block;
  padding: 10px 15px;
  color: #001144;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #007bff;
}

.contact-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.2em;
  color: #001144;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.125em;
  color: #555;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: left;
}

.contact-form,
.contact-info {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #001144;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  resize: vertical;
}

.btn-kirim {
  padding: 12px 25px;
  background-color: #28add6;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-kirim:hover {
  background-color: #1d94b9;
}

.contact-info h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #00695c;
}

.contact-info p {
  font-size: 1em;
  margin-bottom: 10px;
  color: #333;
}

.contact-info .btn-wa {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #09c237;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-info .btn-wa:hover {
  background-color: #06ad30;
}

.contact-info i {
  color: #48e400;
  margin-right: 10px;
  width: 20px;
}

.contact-info .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  object-fit: contain;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
}

.btn-wa {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-wa:hover {
  background-color: #1ebc59;
}

.map-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.halaman-artikel {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.halaman-artikel .container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.halaman-artikel .section-title {
  font-size: 2.2rem;
  color: #001144;
  margin-bottom: 10px;
}

.halaman-artikel .blog-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 30px;
}

.artikel-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.artikel-content h2 {
  font-size: 1.4rem;
  color: #001144;
  margin-top: 30px;
  margin-bottom: 10px;
}

.artikel-content p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-block;
  margin-top: 20px;
  color: #007070;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.blog-link:hover {
  text-decoration: underline;
  color: #004d4d;
}

.wa-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.wa-button img {
  width: 50px;
  height: 50px;
}
.wa-button:hover {
  transform: scale(1.1);
}

.area-layanan {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.area-title {
  font-size: 2rem;
  font-weight: bold;
  color: #00264d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.area-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.area-list ul {
  list-style-type: disc;
  padding-left: 20px;
  max-width: 300px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #28add6;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .header-content {
    padding: 10px 20px;
  }


  .logo-img {
    height: 45px;
  }

  /* === HAMBURGER MENU === */
.menu-toggle {
    display: flex !important;
  }

.menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Animasi toggle jadi X */
   .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* === MENU DROPDOWN RESPONSIVE === */
nav {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 70%;
  background-color: #28add6;
  border-radius: 0 0 0 15px;
  transition: right 0.4s ease;
  z-index: 2500;
  box-shadow: -4px 4px 12px rgba(0,0,0,0.15);
}

  nav.show {
    right: 0;
  }

.nav-menu {
  flex-direction: column;
  gap: 10px;
  padding: 20px 25px;
  list-style: none;
  width: 100%;
}


  .nav-menu.show {
    max-height: 400px;
  }

  .nav-menu li {
    width: 100%;
  }

.nav-menu a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 0.95em;
  text-align: left;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.15);
    color: white;
  }

  /* === HERO ADJUST === */
 .hero {
    margin-top: 70px;
    padding-top: 40px;
    text-align: center;
  }

.hero h1 {
    font-size: 1.3em;
  }

  .hero-images {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .background-hero {
    padding: 100px 15px 60px;
  }

  .background-hero h1 {
    font-size: 1.7em;
  }

  .cara-pemesanan-container {
    padding: 30px 20px;
  }

  .step {
    padding: 25px 18px;
  }

  .cara-pemesanan-container .btn-wa {
    padding: 12px 25px;
    font-size: 1em;
  }

  .background-content1 h1 {
    font-size: 1.3em;
  }
  
  .tentang-kami {
    padding: 80px 40px;
    margin-top: 20px;
  }

  .tentang-kami .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .tentang-content {
    display: flex;
    flex-direction: column; /* ubah jadi vertikal */
    align-items: center;
    gap: 20px; /* sedikit jarak antar elemen */
  }

  .tentang-text {
    width: 100%;
    max-width: 100%;
    flex: none;
    text-align: justify;
    margin: 0;
    padding: 20px;
  }

  .tentang-image {
    width: 100%;
    text-align: center;
  }

  .tentang-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
  }

  .section-title {
    margin-bottom: 10px; /* biar judul nggak terlalu jauh */
    font-size: 1.8rem;
  }

  .contact-section{
    padding:80px 20px;
  }

  .halaman-blog{
   padding: 80px 20px; 
  }

  .halaman-blog .section-title{
    font: 1.6em;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-image {
    height: 160px;
  }

  .blog-title {
    font-size: 1.1em;
  }

  .blog-excerpt {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .blog-subtitle {
    font-size: 0.95em;
  }

  .blog-content {
    padding: 16px;
  }

  .blog-link {
    font-size: 0.9em;
  }

}


@media (max-width: 1024px) {
  .blog-grid {
    gap: 24px;
  }

  .blog-image {
    height: 170px;
  }

  .blog-title {
    font-size: 1.15em;
  }

  .blog-excerpt {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .blog-image {
    height: 120px;
  }

  .blog-content {
    padding: 12px;
  }

  .blog-title {
    font-size: 0.9em;
    line-height: 1.3;
  }

  .blog-excerpt {
    font-size: 0.8em;
    line-height: 1.4;
  }

  .blog-link {
    font-size: 0.8em;
  }
}
