@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

.brand {
  display: flex;
  align-items: center;
  gap: 25px; /* tambahin jarak lebih besar dari 12px */
  margin-left: 20px; /* biar keseluruhan brand agak geser ke kanan */
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transform: scale(1.4); /* kalau mau logo diperbesar */
  transform-origin: left center;
}

.nama {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}


h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #088178;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

/* Header Start */

#header {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Geser ke kanan */
    gap: 30px;
    padding: 20px; /* Optional: memberi jarak dalam */
}

#navbar li {
    list-style: none;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #088178;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    width: 30%;
}

#mobile {
  display: flex;
  align-items: center;
  gap: 15px;           /* jarak antar ikon */
  font-size: 24px;     /* ukuran default ikon */
  color: #ff6600;      /* warna default ikon */
}

#mobile a {
  color: inherit;       /* biar ikut warna #mobile */
  text-decoration: none;
}

#mobile i {
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* efek hover biar lebih interaktif */
#mobile i:hover {
  color: #ff3300;       /* warna lebih gelap saat hover */
  transform: scale(1.2);
}

/* khusus bar (menu toggle) bisa kasih warna beda */
/* Default (desktop/laptop) */
#bar {
  color: #fff; /* misalnya putih */
  font-size: 24px;
  cursor: pointer;
}

/* Mode HP / Tablet */
@media (max-width: 768px) {
  #bar {
    color: #fff; /* warna emas pas HP */
  }
}


/* Home Page */

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full layar */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px; /* biar teks ga nempel pinggir */
}

#hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* gambar penuh */
  z-index: -1;
}

#hero .hero-content {
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5); /* biar teks jelas */
  padding: 30px 20px;
  border-radius: 12px;
  color: #fff;
  animation: fadeInUp 1s ease-in-out;
}

#hero h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

#hero p {
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 20px;
}

#hero h2,
#hero h4,
#hero h1,
#hero p {
  color: #fff; /* teks putih */
}
#hero button {
  background: #FFD700;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#hero button:hover {
  background: #e6c200;
  transform: scale(1.05);
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile khusus */
@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }
  #hero .hero-content {
    padding: 20px;
  }
  #hero h2 {
    font-size: 22px;
  }
}


#tentang-kami {
  padding: 80px 20px;
  background-color: #fff;
}

.tentang-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tentang-teks {
  flex: 1;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.tentang-gambar {
  text-align: center;
  margin: 20px 0;
}

.tentang-gambar img {
  width: 100%;
  max-width: 500px;       /* lebih kecil */
  aspect-ratio: 16 / 9;   /* jaga proporsi 16:9 */
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-left: 20px;      /* geser ke kanan */
}


.tentang-gambar img:hover {
  transform: scale(1.03);
}

/* Layout responsif */
@media (max-width: 768px) {
  .tentang-container {
    flex-direction: column;
    text-align: center;
  }

  .tentang-gambar {
    display: flex;
    justify-content: center; /* gambar di tengah */
  }

  .tentang-gambar img {
    width: 80%;   
    height: auto;
  }
}

@media (max-width: 480px) {
  .tentang-gambar img {
    width: 100%;
    height: auto;
  }
}

.services {
  padding: 70px 0;
  text-align: center;
}

.services h3 {
  margin-bottom: 50px;
  font-size: 30px;
  color: #000;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 25px 20px;
  margin: 15px;
  flex: 1 1 280px;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card h4 {
  font-size: 20px;
  color: #4d2c19;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.kenapa-kami {
  padding: 80px 20px;
  background-color: #fff8f1;
  text-align: center;
}

.kenapa-kami h2 {
  font-size: 32px;
  color: #4d2c19;
  margin-bottom: 40px;
}

.alasan-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.alasan {
  background-color: #fff;
  padding: 30px 20px;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.alasan:hover {
  transform: translateY(-10px);
}

.alasan i {
  font-size: 36px;
  color: #c79b53;
  margin-bottom: 15px;
}

.alasan h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.alasan p {
  font-size: 14px;
  color: #666;
}
.galeri-portofolio {
  padding: 60px 20px;
  background-color: #f4efe8;
  text-align: center;
}

.galeri-portofolio h2 {
  font-size: 30px;
  color: #4d2c19;
  margin-bottom: 10px;
}

.galeri-portofolio p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.galeri-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.galeri-item img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../foto/banner/b2new.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    color: #fff;
    font-size: 16px;
}

#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #ef3636;
}

#banner button:hover {
    background-color: #088178;
    color: #fff;
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../foto/banner/b17new.jpg");
    min-width: 540px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: url("../foto/banner/b10new.jpg");
}

#sm-banner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
    background: #088178;
    border: 1px solid #088178;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../foto/banner/b7new.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2 {
    background-image: url("../foto/banner/b4new.jpg");
}

#banner3 .banner-box3 {
    background-image: url("../foto/banner/b18new.jpg");
}

#banner3 h2 {
    color: #ec544e;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: #ffbd27;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer {
  background: #111;
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Spartan', sans-serif;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

footer .footer-section {
  flex: 1;
  min-width: 250px;
}

footer h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p, 
footer a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

/* Sosial Media */
footer .social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ddd;
  transition: all 0.3s ease;
}

footer .social-icons a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ffd700;
}

footer .social-icons a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* copyright */
footer .copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ============= RESPONSIVE ============= */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
  footer .footer-container {
    gap: 30px;
  }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  footer .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  footer .social-icons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  footer .social-icons a {
    flex-direction: column;
    font-size: 0.85rem;
  }

  footer .social-icons a i {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  footer {
    padding: 30px 15px;
  }

  footer .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  footer h4 {
    font-size: 1rem;
  }

  footer p, footer a {
    font-size: 0.9rem;
  }

  footer .social-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .social-icons a {
    margin: 5px 10px;
  }
}

/* layanan page */

.layanan-header {
  text-align: center;
  padding: 50px 20px;
  background-color: #004d40;
  color: #fff;
}
.layanan-header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}
.layanan-header p {
  font-size: 1.2em;
}
.image-slider {
  text-align: center;
  padding: 40px 0;
}

.image-slider {
  padding: 50px 0;
  background: #f9f9f9;
}

.judul-slider {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1e3932;
}

.slider-container {
  overflow: hidden;
  cursor: grab;
  max-width: 1400px;
  margin: auto;
}

.slider-track {
  display: flex;
  gap: 30px;
  animation: scrollInfinite 40s linear infinite;
}

/* ✅ Gambar besar */
.slider-track img {
  width: 360px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.slider-track img:hover {
  transform: scale(1.06);
}

/* Animasi infinite loop */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .slider-track img {
    width: 220px;
    height: 150px;
  }

  .judul-slider {
    font-size: 1.8rem;
  }
}

/* === Responsive Table === */
.layanan-section {
  padding: 20px;
}

.layanan-section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.layanan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.layanan-table th,
.layanan-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.layanan-table th {
  background-color: #0d5035;
  color: white;
}

/* Biar tabel bisa digeser di mobile */
.layanan-section {
  overflow-x: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .layanan-table {
    font-size: 14px;
  }
  .layanan-table th,
  .layanan-table td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .layanan-table {
    font-size: 12px;
  }
  .layanan-table th,
  .layanan-table td {
    padding: 6px;
  }
}


.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card {
  flex: 1 1 30%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #004d40;
  margin-bottom: 10px;
}

.alur-pemesanan {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.alur-pemesanan h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #004d40;
}

.step-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.step .circle {
  width: 60px;
  height: 60px;
  background: #004d40;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.step p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}
.cta-full {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fdfaf6;
  padding: 100px 20px;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 30px;
}

.curved-arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  animation: bounceArrows 2.5s ease-in-out infinite;
}

@keyframes bounceArrows {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.cta-button {
  padding: 14px 32px;
  background-color: #6d4c41;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #5d4037;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.copyright {
    width: 100%;
    text-align: center;
}


/* blog page */
#page-header.blog-header{
    background-image: url(../foto/banner/b2new.jpg);
}

/* Blog Section */
.blog-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 10%;
  background: #f8f9fa;
}

.blog-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.blog-box:hover {
  transform: translateY(-10px);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.blog-details {
  padding: 20px;
}

.blog-details h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.blog-details p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
}


/* about page */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
/* Tentang Kami */
.tentang-kami {
  padding: 80px 0;
}

.tentang-kami .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tentang-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.tentang-content .text {
  flex: 1 1 50%;
}

.tentang-content .text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.tentang-content .text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.tentang-content .image {
  flex: 1 1 50%;
  text-align: center;
}

.tentang-content .image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* TIMELINE */
.timeline-modern {
  position: relative;
  padding-left: 40px;
  margin-top: 60px;
  border-left: 3px solid #00a86b;
}

.timeline-block {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  animation: fadeInUp 0.6s ease both;
}

.timeline-date {
  background-color: #00a86b;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.timeline-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.timeline-content h3 {
  margin-top: 0;
  color: #00a86b;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  line-height: 1.6;
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .timeline-modern {
    padding-left: 20px;
  }

  .timeline-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    margin-bottom: 10px;
  }
}

/* SPACER */
.spacer {
  height: 100px;
}

/* VIDEO */
/* VIDEO */
.video-section {
  text-align: center;
  margin: 40px auto;
}

.video-container {
  width: 100%;
  max-width: 900px;     /* batas lebar di desktop */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9; /* PAKSA landscape */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* isi penuh, jadi banner */
  display: block;
}

/* === HP (layar kecil) === */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;   /* biar full layar HP */
    border-radius: 12px;
  }
}


/* GALERI */
.galeri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.galeri img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.galeri img:hover {
  transform: scale(1.05);
}
/* --- TESTIMONI --- */
.testimoni {
  background-color: #fdfdfd;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.testimoni-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimoni-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.testimoni-card:hover {
  transform: translateY(-8px);
}

.testi-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f39c12;
}

.testimoni-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  min-height: 90px;
}

.testimoni-card h4 {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #333;
}

.testimoni-card span {
  font-size: 0.9rem;
  color: #888;
}

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  backdrop-filter: blur(2px);
}

.cta-container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: white;
  color: #e67e22;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background-color: #ffe6cc;
  color: #d35400;
}


/* contact page */
#breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb span {
    color: #555;
}

#contact-details{
     display: flex;
     align-items: center;
     justify-content: space-between;
}

#contact-details .details{
    width: 40%;
}

#contact-details .details span,
#form-details form span{
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}

#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}

#form-details{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}

#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

#form-details form button{
    background-color: #088178;
    color: #fff;   
}

#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}


/* cart page */
#cart{
    overflow-x: auto;
}

#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img{
    width: 70px;
}

#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5)
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td{
    padding-top: 15px;
}

#cart table tbody tr td{
    font-size: 13px;
}

#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon{
    width: 50%;
    margin-bottom:30px;
}

#coupon h3,
#subtotal h3{
    padding-bottom: 15px;
}

#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}

#coupon button,
#subtotal button{
    background-color: #088178;
    color: #fff;
    padding: 12px 20px;
}

#subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}

#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td{
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}


/* ========================= */
/* 📱 RESPONSIVE DESIGN CSS  */
/* ========================= */

/* ========== TABLET & HP BESAR (max-width: 799px) ========== */
@media (max-width: 799px) {

    /* General Section */
    .section-p1 {
        padding: 40px 40px;
    }

    /* Navbar Mobile */
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        padding: 80px 0 0 10px;
        background-color: #000000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }
    #navbar.active { right: 0; }
    #navbar li { margin-bottom: 25px; }

    /* Mobile Icon */
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i {
        font-size: 24px;
        padding-left: 20px;
        color: #1a1a1a;
    }
    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 24px;
        color: #222;
    }
    
    #lg-bag { display: none; }

    /* Hero Section */
    #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }

    /* Features */
    #feature { justify-content: center; }
    #feature .fe-box { margin: 15px; }

    /* Products */
    #product1 .pro-container { justify-content: center; }
    #product1 .pro { margin: 15px; }

    /* Banner */
    #banner { height: 20vh; }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }
    #banner3 { padding: 0 40px; }
    #banner3 .banner-box { width: 28%; }

    /* Newsletter */
    #newsletter .form { width: 70%; }

    /* Contact Page */
    #form-details { padding: 40px; }
    #form-details form { width: 50%; }
}

/* ========== SMARTPHONE KECIL (max-width: 477px) ========== */
@media (max-width: 477px) {

    /* General Section */
    .section-p1 { padding: 20px; }
    #header { padding: 10px 30px; }

    h1 { font-size: 38px; }
    h2 { font-size: 32px; }

    /* Hero */
    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    /* Features */
    #feature { justify-content: space-between; }
    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px;
    }

    /* Products */
    #product1 .pro { width: 100%; }

    /* Banner */
    #banner { height: 40vh; }
    #sm-banner .banner-box { height: 40vh; }
    #sm-banner .banner-box2 { margin-top: 20px; }
    #banner3 { padding: 0 20px; }
    #banner3 .banner-box { width: 100%; }

    /* Newsletter */
    #newsletter {
        padding: 40px 20px;
    }
    #newsletter .form { width: 100%; }
    footer .copyright { text-align: start; }

    /* Single Product */
    #prodetails {
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image {
        width: 100%;
        padding-top: 0;
    }
    #prodetails .single-pro-details {
        width: 100%;
    }

    /* Blog Page */
    #blog {
        padding: 100px 20px 0;
    }
    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
        width: 100%;
        margin: 0 0 30px 0;
    }
    #blog .blog-details {
        width: 100%;
    }

    /* About Page */
    #about-head { flex-direction: column; }
    #about-head img {
        width: 100%;
        margin-bottom: 20px;
    }
    #about-head div { padding-left: 0; }
    #about-app .video { width: 100%; }

    /* Contact Page */
    #contact-details { flex-direction: column; }
    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact-details .map { width: 100%; }

    #form-details {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Cart Page */
    #cart-add { flex-direction: column; }
    #coupon { width: 100%; }
    #subtotal {
        width: 100%;
        padding: 20px;
    }
}

