/* =============================
   LINIER.ID - CUSTOM CSS STYLE
   ============================= */

   .logo-linier {
  height: 4.2rem;   
}
@media (min-width: 768px) {
  .logo-linier {
    height: 5.2rem; 
  }
}
 /* Menambahkan style untuk sticky header */
 .sticky-header {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 4px 2px -2px gray;
}

.elementor-header {
    color: #00358D;
    font-family: "Inter", Sans-serif;
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
}

.elementor-subheader {
    color: #015092;
    font-family: "Inter", Sans-serif;
    font-size: 33px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 10px 10px 10px;
    background-color: #FFE5B0;
}

.produk-title {
    color: #015092;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.produk-price {
    color: #015092;
    font-family: "Roboto", Sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.custom-paragraph p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.custom-paragraph ul {
    margin-left: 20px;
    padding-left: 0;
}

.custom-paragraph ul li {
    margin-bottom: 2px;
}

.custom-paragraph span {
    display: inline-block;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .elementor-header {
        font-size: 32px;
    }

    .elementor-subheader {
        font-size: 22px;
    }
}

/* --- SECTION: HERO --- */
.hero-linier {
    position: relative;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 12rem;  /* pt-48 */
    padding-bottom: 8rem; /* pb-32 */
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    min-height: 68vh;
    margin-top: 2.5rem; /* mt-16, sesuaikan dgn tinggi header */
    overflow: hidden;
  }
  .hero-heading {
    font-size: 1.5rem;     /* mobile */
  }
  @media (min-width: 1024px) {
    .hero-linier {
      background-position: center;
    }
  }
  
  /* Overlay hero */
  .hero-linier .hero-overlay {
    position: absolute;
    inset: 0;
    background: #0097b2; /* bg-blue-950 */
    opacity: 0.2;
    z-index: 1;
  }
  
  /* Hero konten center vertical */
  .hero-linier .hero-center {
    position: relative;
    z-index: 2;
    max-width: 64rem; /* max-w-5xl */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 250px; /* atau min-height sesuai selera */
  }
  
  @media (max-width: 640px) {
    .hero-linier {
      padding-top: 5rem;
      padding-bottom: 4rem;
    }
    .hero-linier .hero-center {
      height: 500px !important;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .hero-linier .hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
        /* margin-top:40px; */
      }
    
  }
  
  /* Background image/overlay di hero */
  .hero-linier .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }
  /* --- HERO TEXT ANIMATION --- */
.hero-anim {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s cubic-bezier(0.45,0,0.55,1) forwards;
  }
  .hero-anim-1 {
    animation-delay: 0.2s;
  }
  .hero-anim-2 {
    animation-delay: 0.7s;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* ===========================
     PRODUK GRID (section produk)
     =========================== */
  
  .produk-linier {
    background: #f3f4f6; /* bg-gray-100 */
    padding: 5rem 0;
  }
  .produk-grid {
    max-width: 80rem; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
  }
  .produk-title {
    font-size: 2rem;
    font-weight: 800;
    color: #172554;
    margin-bottom: 3rem;
    text-align: center;
  }
  @media (min-width: 768px) {
    .produk-title {
      font-size: 2.5rem;
    }
  }
  .produk-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  @media (min-width: 768px) {
    .produk-card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .produk-card-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .produk-card {
    background: #0097b2;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(18, 24, 56, 0.08);
    transition: box-shadow 0.3s;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .produk-card:hover {
    box-shadow: 0 12px 36px rgba(18, 24, 56, 0.12);
  }
  .produk-card img {
    height: 4rem;
    margin-bottom: 1rem;
  }
  .produk-card h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
  }
  .produk-card p {
    font-size: 0.95rem;
    color: #e1e3e9;
    margin-bottom: 1rem;
    text-align: center;
  }
  .produk-card a {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  .produk-card a:hover {
    text-decoration: underline;
    color: #fde68a;
  }

  /* ======= PRODUK SECTION ANIMATION ======= */

/* --- ON LOAD: ANIMASI HEADER & CARD --- */
.produk-anim-header {
    opacity: 0;
    transform: translateY(40px);
    animation: produkFadeUp 1s cubic-bezier(.45,0,.55,1) forwards;
    animation-delay: 0.1s;
  }
  .produk-anim-card {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: produkCardUp 0.8s cubic-bezier(.42,.2,.46,.92) forwards;
  }
  .produk-anim-card-1 { animation-delay: 0.3s; }
  .produk-anim-card-2 { animation-delay: 0.5s; }
  .produk-anim-card-3 { animation-delay: 0.7s; }
  .produk-anim-card-4 { animation-delay: 0.9s; }
  
  @keyframes produkFadeUp {
    to { opacity: 1; transform: translateY(0);}
  }
  @keyframes produkCardUp {
    to { opacity: 1; transform: translateY(0) scale(1);}
  }
  
  /* --- ON SCROLL: ANIMASI DENGAN INTERSECTION OBSERVER --- */
  .anim-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.45,0,.55,1), transform 0.8s cubic-bezier(.45,0,.55,1);
  }
  .anim-scroll.active {
    opacity: 1;
    transform: translateY(0);
  }
  .anim-delay-1 { transition-delay: 0.2s; }
  .anim-delay-2 { transition-delay: 0.4s; }
  .anim-delay-3 { transition-delay: 0.6s; }
  .anim-delay-4 { transition-delay: 0.8s; }
 
   /* Tombol */
   .produk-btn-group {
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
    justify-content: center !important;   /* Ini yang bikin horizontal center! */
    align-items: center !important;
    margin-top: 2.5rem;
  }
  @media (max-width: 640px) {
    .produk-btn-group {
        flex-direction: column;
        gap: 1rem;
        justify-content: center !important;   /* Ini yang bikin horizontal center! */
        align-items: center !important;
        margin-top: 1.5rem;
      }
  
  }
  .produk-btn,
  .produk-btn-yellow {
    font-weight: 700;
    border-radius: 1rem;
    padding: 0.75rem 2rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(18,24,56,0.12);
    width: fit-content;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
  .produk-btn {
    background: #172554;
    color: #fff;
  }
  .produk-btn:hover {
    background: #fbbf24;
    color: #172554;
  }
  .produk-btn-yellow {
    background: #fbbf24;
    color: #172554;
  }
  .produk-btn-yellow:hover {
    background: #fde68a;
    color: #172554;
  }
  /* ===============================
     SECTION: TENTANG PELAYANAN
     =============================== */
  .tentang-linier {
    background: #fff;
    padding: 5rem 0;
  }
  .tentang-container {
    width:80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  @media (min-width: 1024px) {
    .tentang-container {
      flex-direction: row;
      gap: 3rem;
    }
    .tentang-right img {
        border-radius: 0;
        box-shadow: 0 8px 32px rgba(18, 24, 56, 0.11);
        width: 80%;
        /* max-width: 18rem; */
      }
  }
  @media (max-width: 640px) {
    .tentang-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .tentang-right img {
      border-radius: 1.5rem;
      box-shadow: 0 4px 16px rgba(18, 24, 56, 0.15);
      width: 100% !important;
     
    }
    .tentang-container {
        width:95% !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
  }
  .tentang-left {
    flex: 1;
  }
  .tentang-right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .tentang-right img {
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(18, 24, 56, 0.11);
    width: 80%;
    /* max-width: 18rem; */
  }
  
  /* List & icon */
  .tentang-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .tentang-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }
  .tentang-list li span {
    color: #fbbf24;
    font-size: 1.25rem;
    line-height: 1;
  }
  
  /* Tombol */
  .tentang-btn-group {
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
    justify-content: center !important;   /* Ini yang bikin horizontal center! */
    align-items: center !important;
    margin:0 auto !important;
  }
  @media (max-width: 640px) {
    .tentang-btn-group {
        flex-direction: column;
        gap: 1rem;
        justify-content: center !important;   /* Ini yang bikin horizontal center! */
        align-items: center !important;
        margin:0 auto !important;
      }
  
  }
  .tentang-btn,
  .tentang-btn-yellow {
    font-weight: 700;
    border-radius: 1rem;
    padding: 0.75rem 2rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(18,24,56,0.12);
    width: fit-content;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
  .tentang-btn {
    background: #172554;
    color: #fff;
  }
  .tentang-btn:hover {
    background: #fbbf24;
    color: #172554;
  }
  .tentang-btn-yellow {
    background: #fbbf24;
    color: #172554;
  }
  .tentang-btn-yellow:hover {
    background: #fde68a;
    color: #172554;
  }
  