/* Hide native disclosure arrow on <details><summary> in FAQ */
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary { list-style: none; }

/* Soft expand animation for FAQ */
.faq-item > div { animation: faqOpen 0.25s ease-out; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Long words wrap nicely on small screens */
h1, h2, h3 { overflow-wrap: anywhere; }

/* Footer columns stack on mobile */
@media (max-width: 767px) {
  footer .grid.gap-8.md\:grid-cols-3 { grid-template-columns: 1fr; }
}

/* Mobile tap target */
@media (hover: none) {
  input, textarea, button, a { -webkit-tap-highlight-color: transparent; }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: all .3s ease;
}

.floating-contact a:hover {
    transform: translateY(-3px) scale(1.05);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-call {
    background: #0F766E;
}

.floating-contact i {
    font-size: 26px;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }

    .floating-contact a {
        width: 54px;
        height: 54px;
    }
}


.faq-item summary {
    cursor: pointer;
}

.faq-item[open] div {
    animation: faq-open .3s ease;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prose-terms h2:first-of-type{
    margin-top:0;
}

.prose-terms h2{
    scroll-margin-top:100px;
}

.prose-terms p{
    line-height:1.9;
}

.prose-terms ul{
    margin-top:1rem;
    margin-bottom:1.5rem;
}

.prose-terms li{
    line-height:1.8;
}

.floating-call svg {
  display: block;
  color: #ffffff;
}