:root{ --primary:#01519d; --accent:#00a86b; }
body{font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}

/* Navbar */
.navbar-brand img {
    height: 40px;
}
.navbar-brand span {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}
.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary) !important;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--accent) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.hero {
    padding: 4.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff; 
    flex-direction: column;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0; 
}
.btn {
    background: white;
    color: #01519d;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin: 0.5rem;
    display: inline-block;
}

/* 🔹 Gradasi Deep Blue */
.deep-blue {
    background: linear-gradient(
    135deg,
    #01519d 0%,
    #0276d6 50%,
    #013d75 100%
    );
}

.feature-card{border:0;border-radius:12px;box-shadow:0 6px 20px rgba(2,6,23,0.06);padding:1.25rem}
.pricing-card{border-radius:12px;border:1px solid rgba(1,81,157,0.08)}
/* ===== FAQ - tampilan seperti screenshot ===== */

/* Judul FAQ */
.faq-section .faq-title {
  text-align: center;
  color: #013d75;            /* oranye */
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: 0.6px;
  margin-bottom: 2.25rem;
  text-transform: none;
}

/* Container accordion - hapus gaya bawaan agar total minimalis */
.faq-section .accordion {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Setiap item: hilangkan border bawaan, gunakan garis tipis antar item */
.faq-section .accordion-item {
  border: 0;
  background: transparent;
  padding: 0;
}

/* Garis pemisah tipis (full width item) */
.faq-section .accordion-item + .accordion-item {
  border-top: 1px solid #e9ecef;
}

/* Tombol / pertanyaan */
.faq-section .accordion-button {
  background: transparent;
  padding: 1.25rem 0;        /* jarak atas/bawah besar seperti screenshot */
  font-weight: 700;
  color: #222;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase; /* sesuai screenshot */
  box-shadow: none !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hilangkan radius pada tombol (agar garis lurus) */
.faq-section .accordion-button:not(.collapsed) {
  border-radius: 0;
}

/* Sembunyikan garis bawah default pada tombol collapsed ketika fokus */
.faq-section .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/* Style jawaban (body) */
.faq-section .accordion-body {
  padding: 1rem 0 1.25rem 0; /* jarak jawaban agak rapat ke garis bawah */
  color: #6b7280;            /* grey teks jawaban */
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Styling panah (bootstrap menambahkan ::after) */
/* Perbaiki ukuran, warna, dan transisi */
.faq-section .accordion-button::after {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  color: #222;               /* warna panah saat tertutup */
  transition: transform 0.25s ease, color 0.25s ease;
  font-size: 16px;
}

/* Saat terbuka: panah berputar 180deg dan ganti warna */
.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #013d75;            /* oranye saat aktif */
}

/* Hover effect untuk pertanyaan */
.faq-section .accordion-button:hover {
  color: #013d75;
}

/* Agar garis separator terlihat sama pada latar putih/abu-abu */
.faq-section {
  background: #fff;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Responsif: kecilkan padding di layar kecil agar tidak terlalu panjang */
@media (max-width: 576px) {
  .faq-section .accordion-button {
    padding: 1rem 0;
    font-size: 0.92rem;
  }
  .faq-section .faq-title {
    font-size: 1.5rem;
  }
}
.cta-btn{background:var(--primary);color:#fff;border-radius:10px;padding:0.6rem 1.2rem}
.whatsapp-fab{position:fixed;right:1rem;bottom:1rem;background:#25d366;color:#fff;border-radius:50%;width:56px;height:56px;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(2,6,23,0.12);z-index:1050}
footer{background: linear-gradient(135deg, #01519d, #013d75); color: #fff;}
.badge-new{background:var(--accent);color:#fff}
.follow-us {
    text-align: center;
    padding: 40px 0;
    color: white;
}

.follow-us h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-btn i {
    font-size: 16px;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Branding Colors */
.fb i { color: #1877F2; }
.ig i { color: #E4405F; }
.tw i { color: #1DA1F2; }
