

/* Back to Top Button */
.back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Form Styles */
.form input::placeholder {
    color: rgba(70, 63, 58, 0.35);
}

.dark .form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid rgba(70, 63, 58, 0.15);
}

.faq-toggle {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Blinker', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #463F3A;
}

.dark .faq-toggle {
    color: #FFFFFF;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: 'Blinker', sans-serif;
    font-size: 1.05rem;
    color: rgba(70, 63, 58, 0.8);
    padding-right: 1rem;
}

.dark .faq-answer {
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer.open {
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
