/* HASAN SALIHIN (https://hasan.web.id) */
 .columns.is-multiline {
     align-items: stretch;
 }
::selection {
  background: #cddc39;
  color: #333 !important;
}
::-moz-selection {
  background: #cddc39;
  color: #333;
}
 .accordion-body {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 1rem;
     flex-wrap: wrap;
 }

 @media (max-width: 768px) {
     .accordion-body {
         flex-direction: column;
         align-items: flex-start;
     }

     .accordion-body .tag {
         margin-top: 0.75rem;
         align-self: flex-start;
     }
 }

 .card {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .card-content {
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .card-content a {
     margin-top: auto;
 }

 .card-content p {
     min-height: 90px;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .map-container {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     height: 0;
     overflow: hidden;
     border-radius: 8px;
 }

 .map-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: 0;
 }

 img {
     filter: grayscale(100%);
     -webkit-filter: grayscale(100%);
     transition: all 0.3s ease;
 }

 img:hover {
     filter: grayscale(0%);
     -webkit-filter: grayscale(0%);
 }

 .top-bar {
     background: #0D253F;
     color: #fff;
     text-align: center;
     font-size: 0.9rem;
     padding: 0.4rem 1rem;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 30;
 }

 .navbar.is-fixed-top {
     top: 2rem;
 }

 .lime {
     color: #cddc39;
 }

 body {
     font-family: "Andika", sans-serif;
     background-color: #fff;
     color: #111;
 }

 .navbar {
     background-color: #1A73E8 !important;
 }

 .navbar-menu {
     background-color: #1A73E8 !important;
 }

 .navbar-item,
 .navbar-link {
     color: #fff !important;
 }

 .navbar-item:hover,
 .navbar-link:hover {
     background-color: #0D253F !important;
     color: #cddc39 !important;
 }

 .hero {
     background:
         linear-gradient(rgba(26, 115, 232, 0.2), rgba(26, 115, 232, 0.2)),
         url('https://konveksitopibandung.com/images/head.jpg');
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
     width: 100%;
     min-height: 100vh;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;

 }

 .button.is-lime {
     background-color: #cddc39;
     color: #111;
     border: none;
 }

 .button.is-lime:hover {
     background-color: #d4e157;
     color: #000;
 }

 .hitam-sans {
     background-color: #333;
 }

 .hitam-med {
     background-color: #2b2b2b;
 }

 .faq {
     max-width: 720px;
     margin: 0 auto;
 }

 .faq-item {
     border-bottom: 1px solid #222;
     margin-bottom: 0.5rem;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     background: none;
     border: none;
     color: #111;
     font-size: 1.2rem;
     padding: 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
 }

 .faq-question:hover {
     color: #d4ff00;
 }

 .faq-toggle {
     font-weight: bold;
     font-size: 1.5rem;
     transition: transform 0.3s;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     opacity: 0;
     transition: all 0.4s ease-in-out;
     padding: 0 1rem;
 }

 .faq-answer p {
     color: #000;
     margin: 0.8rem 0 1rem;
 }

 .faq-item.active .faq-answer {
     max-height: 200px;
     opacity: 1;
 }

 .faq-item.active .faq-toggle {
     transform: rotate(45deg);
     color: #d4ff00;
 }

 .testi-wrapper {
     position: relative;
     height: 120px;
 }

 .testi-item {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     background-color: #1a1a1a;
     padding: 1rem 1.2rem;
     border-radius: 10px;
     opacity: 0;
     transform: translateY(15px);
     transition: all 0.5s ease-in-out;
 }

 .testi-item.active {
     opacity: 1;
     transform: translateY(0);
     z-index: 1;
 }

 .testi-content {
     flex: 1;
 }

 .wa-float-wrapper {
     position: fixed;
     bottom: 20px;
     right: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
     z-index: 1000;
 }

 .wa-text-float {
     background-color: #d4ff00;
     padding: 5px;
     border-radius: 10px;
     color: #111;
     font-weight: bold;
     font-size: 16px;
 }

 .wa-icon-float {
     background-color: #d4ff00;
     color: #111;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     text-decoration: none;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .wa-icon-float:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
 }

 .wa-icon-float i {
     font-size: 28px;
 }

 .footer a:hover {
     color: #d4ff00;
 }
 .foot:hover,
 .foot a:hover {
     color: #d4ff00 !important;
     text-decoration: underline;
 }