.hero {
    height: 1000px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    max-width: 1000px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-overlay h1 {
    font-size: 2.5rem;
}

.hero-overlay .btn {
    background-color: #1d1d3b;
    border: none;
}

.hero-overlay h1.fw-normal {
    font-size: 6rem;
}

.hero-overlay h1.fw-bold {
    font-size: 6rem;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 3rem;
}

/* Navbar Link */
.navbar-nav .nav-link {
    color: #8a8a8a;
    font-weight: 400;
    font-size: 1.5rem; /* 18px */
    position: relative;
    transition: all 0.2s ease-in-out;
    padding: 10px 16px;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #d4af37;
    font-weight: 600;
}

/* Active */
.navbar-nav .nav-link.active {
    color: #d4af37;
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    margin-top: 4px;
    border-radius: 1px;
}

.navbar-nav {
    gap: 32px; /* Atur sesuai kebutuhan: 24px, 32px, dst */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-section h2 {
    font-size: 2.5rem; /* sekitar 35px */
    font-weight: 700;
    line-height: 1.3;
}

.about-section p {
    text-align: justify;
    font-size: 1.5rem; /* sekitar 18px */
    line-height: 1.1;
}


.about-section .underline {
    height: 3px;
    background-color: #d4af37; /* emas */
    border-radius: 2px;
    width: 100%; /* full width */
    max-width: 100%; /* pastikan tidak terbatas */
}


.about-section img {
    border-radius: 12px;
    max-height: 500px; /* atau 600px sesuai proporsi gambar */
    object-fit: cover;
}
  
.about-img {
    width: 100%;
    min-height: 600px;
    max-height: 700px;   
}

.why-choose .underline {
    width: 100px;
    height: 3px;
    background-color: #d4af37;
    margin-bottom: 20px;
    border-radius: 2px;
}

.choose-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.choose-card p {
    font-size: 0.95rem;
    color: #555;
}
.icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.our-product .underline {
    width: 120px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
    margin-bottom: 20px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #fff;
}

.product-body {
    padding: 15px;
    text-align: left;
}

.product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.product-code {
    color: #888;
    font-size: 0.85rem;
}

/* Card Produk */
.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease-in-out;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  /* Gambar Produk */
  .product-img-container {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
  }
  
  .product-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  
  /* Info Produk */
  .product-info {
    padding: 16px 14px;
    background-color: #f8f9fa; /* abu muda */
    text-align: left;
  }
  
  .product-info .product-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
  }
  
  .product-info .product-code {
    font-size: 0.85rem;
    color: #999;
  }
  

/* Tombol Emas */
.btn-gold {
    background-color: #d4af37;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background 0.2s ease-in-out;
}

.btn-gold:hover {
    background-color: #c59e2e;
}

.partners-section .underline {
    width: 180px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.partner-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease-in-out;
  }
  
  .partner-logo:hover {
    transform: scale(1.05);
  }

  .partner-quote {
    font-style: italic;
    font-weight: 600;
    color: #6a6e7c; /* sesuai tampilan di screenshot */
    font-size: 1.125rem; /* atau sesuaikan */
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  
  .partners-section .full-line-title h2 {
    display: inline-block;
    background-color: #fff;
    padding: 0 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .partners-section .full-line-title {
    position: relative;
    text-align: center;
  }
  
  .partners-section .full-line-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    z-index: 0;
  }
  

.full-line-title {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.full-line-title h2 {
    display: inline-block;
    background-color: #fff; /* Sesuaikan jika warna latar bukan putih */
    padding: 0 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.full-line-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    z-index: 0;
}



.section-title .line {
    flex: 1;
    height: 2px;
    background-color: #d4af37; /* emas */
    max-width: 100px;
}

.section-title h2 {
    font-size: 1.8rem;
    white-space: nowrap;
}


.contact-section {
    background-color: #1c2541; /* warna biru gelap */
}

.contact-section .underline {
    width: 140px;
    height: 3px;
    background-color: #d4af37;
    margin-bottom: 30px;
    border-radius: 2px;
}

.contact-list {
    padding-left: 0;
  }
  
  .contact-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .contact-list i {
    font-size: 1.5rem;       /* Perbesar icon */
    color: #ffffff;
    min-width: 30px;         /* Pastikan sejajar */
    text-align: center;
  }
  
  .page-link {
  border-radius: 16px !important;
  border: 1px solid #eee;
}

.page-item.active .page-link {
  background-color: #1e2640;
  color: white;
  border-color: #1e2640;
}


.pagination .page-link {
  border: none;
  margin: 0 3px;
  padding: 0.75rem 1rem;
  background-color: #fff;
  color: #333;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 1px #e0e0e0 inset;
  transition: all 0.2s ease-in-out;
}

.pagination .page-item.active .page-link {
  background-color: #1e294f;
  color: white;
  box-shadow: none;
}

.pagination .page-item.disabled .page-link {
  color: #bbb;
  pointer-events: none;
  background-color: #f9f9f9;
}
