/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #13547a;
  --secondary-color:              #2c61fe;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--white-color);
  box-shadow: 0 2px 20px rgba(19, 84, 122, 0.15);
}

.navbar {
  background: var(--white-color);
  border-bottom: none;
  box-shadow: 0 2px 15px rgba(19, 84, 122, 0.10);
  z-index: 1030;
  position: sticky;
  top: 0;
  overflow: visible !important;
}
.sticky-navbar{
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

/* ===== NAV LINKS (desktop only) ===== */
@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px;
  }

  .navbar-nav .nav-link {
    display: inline-block;
    color: #444444;
    font-family: var(--title-font-family);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
    padding: 24px 12px !important;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }

  /* Underline animasi saat hover */
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* ===== DROPDOWN DESKTOP ===== */
.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  opacity: 0;
  visibility: hidden;
  min-width: 240px;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.25s ease;
  pointer-events: none;
  border-radius: 18px;
  z-index: 99999;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.dropdown {
  position: relative;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
  }
}

/* ===== NAVBAR ICON ===== */
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  NAVBAR CTA (etripto.in style)
-----------------------------------------*/
.navbar-brand .brand-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navbar-brand .brand-text {
  font-family: var(--title-font-family);
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  letter-spacing: -0.5px;
  line-height: 1;
}

.navbar-brand .brand-text span {
  color: #ffffff;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.navbar-cta .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7aad 100%);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
  border-radius: var(--border-radius-large);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  white-space: nowrap;
  border: none;
}

.navbar-cta .btn-book:hover {
  background: linear-gradient(135deg, #0e3f5c 0%, var(--primary-color) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(19, 84, 122, 0.3);
  color: var(--white-color);
}

.navbar-cta .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.navbar-cta .phone-link i {
  background: var(--secondary-color);
  color: var(--white-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.navbar-cta .phone-link:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 991px) {
  .navbar-cta {
    margin-left: 0;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    border-top: 1px solid #ecf3f2;
  }
}


/*---------------------------------------
  OFFCANVAS MOBILE MENU
-----------------------------------------*/
.offcanvas.offcanvas-end {
  width: 300px;
  border-left: none;
  box-shadow: -5px 0 30px rgba(19, 84, 122, 0.15);
}

.offcanvas-header {
  background: #2c61fe;
  padding: 16px 20px;
}

.offcanvas-header .navbar-brand {
  margin-right: 0;
}

.offcanvas-header .brand-text {
  color: #ffdd00
}

.offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.offcanvas-topinfo {
  border-bottom: 1px solid #ecf3f2;
  padding-bottom: 16px;
  margin-bottom: 4px;
}

.offcanvas-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(19, 84, 122, 0.08);
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.offcanvas-social:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.offcanvas-nav {
  flex: 1;
  margin-bottom: 20px;
}

.offcanvas-nav .nav-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--title-font-family);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: #333 !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 13px 4px !important;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, padding-left 0.2s;
}

.offcanvas-nav .nav-link::after {
  display: none !important;
}

.offcanvas-nav .nav-link i:first-child {
  color: var(--secondary-color);
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.offcanvas-nav .nav-link:hover {
  color: var(--primary-color) !important;
  padding-left: 8px !important;
}

.offcanvas-accordion-toggle {
  justify-content: space-between;
}

.offcanvas-chevron {
  font-size: 11px !important;
  transition: transform 0.25s;
  width: auto !important;
  color: #aaa !important;
}

.offcanvas-accordion-toggle[aria-expanded="true"] .offcanvas-chevron {
  transform: rotate(180deg);
}

.offcanvas-submenu {
  list-style: none;
  padding: 4px 0 4px 28px;
  margin: 0 0 0 4px;
  background: #f9fdfe;
  border-left: 3px solid var(--secondary-color);
}

.offcanvas-submenu li a {
  display: block;
  font-family: var(--title-font-family);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 9px 8px;
  text-decoration: none;
  transition: color 0.2s;
}

.offcanvas-submenu li a:hover {
  color: var(--primary-color);
}
/* LINE */

/* ICON */

.nav-search-btn i{
    font-size: 14px;
}

/* HOVER */

.nav-search-btn:hover{
    background: #ea580c;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px){

    .nav-search-btn{
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
        gap: 8px;
    }

    .nav-search-btn span{
        display: none;
    }

    .nav-search-btn i{
        font-size: 15px;
    }

}

/* Flat Nav Breadcrumbs Styles */
#flat_nav_breadcrumb {
  overflow: hidden;
  margin: 0px 0 20px 0;
  white-space: nowrap;
}
#flat_nav_breadcrumb a:first-child {
  padding-left: 25px;
}
#flat_nav_breadcrumb a {
  text-decoration: none;
  color: #FFF;
  text-decoration: none;
  padding: 7px 0 7px 45px;
  line-height: 16px;
  background: #3EA9D9;
  position: relative;
  display: inline-block;
}
#flat_nav_breadcrumb a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 35px solid rgba(0, 0, 0, 0);
  border-bottom: 35px solid rgba(0, 0, 0, 0);
  border-left: 30px solid #3EA9D9;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 2;
  margin-top: -35px;
}
#flat_nav_breadcrumb a:nth-child(2) {
  background: #6EBFE3;
}
#flat_nav_breadcrumb a:nth-child(2):after {
  border-left-color: #6EBFE3;
}
#flat_nav_breadcrumb a:nth-child(3) {
  background: #93CFEA;
}
#flat_nav_breadcrumb a:nth-child(3):after {
  border-left-color: #93CFEA;
}
#flat_nav_breadcrumb a:nth-child(4) {
  background: #B1D9EB;
}
#flat_nav_breadcrumb a:nth-child(4):after {
  border-left-color: #B1D9EB;
}

/* =========================
   TRUST SECTION — redesign
========================= */

.trust-section {
    padding: 72px 0;
    background: #f5f7fb;
}

/* Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: #eff6ff;
    color: #1d6fce;
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.trust-item {
    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: #d0ddf0;
}

/* Icon box */
.trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.trust-icon--blue  { background: #eff6ff; color: #1d6fce; }
.trust-icon--green { background: #f0fdf4; color: #16a34a; }
.trust-icon--amber { background: #fffbeb; color: #d97706; }
.trust-icon--red   { background: #fff1f2; color: #e11d48; }

/* Content */
.trust-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.4;
}

.trust-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Footer chip */
.trust-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-footer--blue  { color: #1d6fce; }
.trust-footer--green { color: #16a34a; }
.trust-footer--amber { color: #d97706; }
.trust-footer--red   { color: #e11d48; }

/* Tablet */
@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .trust-section {
        padding: 48px 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 18px 16px 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .trust-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 17px;
        border-radius: 10px;
    }

    .trust-content h4 {
        font-size: 13px;
    }

    .trust-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .trust-footer {
        font-size: 11px;
        padding-top: 10px;
    }
}

/*---------------------------------------
  FAQs — upgraded
-----------------------------------------*/

/* Badge di atas judul */
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    background: #eef2ff;
    color: #2c61fe;
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* Wrapper accordion */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

/* Tiap item */
.faq-accordion .accordion-item {
    border: 1px solid #e8eaf0;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 16px rgba(44, 97, 254, 0.08);
}

/* Tombol pertanyaan — state default */
.faq-accordion .accordion-button {
    background-color: #ffffff;
    color: #1a1f36;
    font-weight: 600;
    font-size: 15px;
    padding: 18px 20px;
    border: none;
    border-radius: 14px !important;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Tombol pertanyaan — state aktif/terbuka */
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #2c61fe;
    color: #ffffff;
    border-radius: 14px 14px 0 0 !important;
    box-shadow: none;
}

/* Hilangkan outline default Bootstrap */
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(44, 97, 254, 0.2);
}

/* Override chevron Bootstrap agar tetap terlihat di state aktif */
.faq-accordion .accordion-button::after {
    filter: none;
    transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Icon bulat di sebelah kiri teks */
.faq-icon-wrap {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #2c61fe;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Body jawaban */
.faq-accordion .accordion-body {
    background-color: #f8f9ff;
    border-left: 4px solid #2c61fe;
    padding: 16px 20px 18px 20px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.75;
    animation: faqSlideDown 0.28s ease-out;
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        font-size: 14px;
        padding: 15px 16px;
        gap: 12px;
    }

    .faq-icon-wrap {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 13px;
    }

    .faq-accordion .accordion-body {
        padding: 14px 16px;
        font-size: 13px;
    }
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}

/*---------------------------------------
  BACK TO TOP — redesign
-----------------------------------------*/
.back-to-top {
    position: fixed;
    left: 28px;
    bottom: 48px;
    z-index: 999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: #2c61fe;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(44, 97, 254, 0.35);

    /* hidden by default */
    opacity: 0;
    transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    background: #1a4de0;
    box-shadow: 0 8px 24px rgba(44, 97, 254, 0.45);
    color: #ffffff;
    text-decoration: none;
}

.back-to-top:active {
    transform: scale(0.94);
}

/* Arrow icon */
.btt-arrow {
    font-size: 18px;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease;
}

.back-to-top:hover .btt-arrow {
    transform: translateY(-2px);
}

/* SVG progress ring */
.btt-progress {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    pointer-events: none;
    border-radius: 50%;
}

.btt-track {
    fill: none;
    stroke: rgba(44, 97, 254, 0.18);
    stroke-width: 2.5;
}

.btt-fill {
    fill: none;
    stroke: #edbe00;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 119.4; /* 2π × 19 */
    stroke-dashoffset: 119.4;
    transition: stroke-dashoffset 0.1s linear;
}

/* Mobile */
@media (max-width: 575px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 40px;
        height: 40px;
    }

    .btt-arrow {
        font-size: 16px;
    }
}
/* ===== FOOTER ===== */
.site-footer {
  background: var(--white-color);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.footer-copy span {
  color: #444;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.social-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 576px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--white-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

