.center-v100 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge {
    font-family: var(--heading-font);
    font-weight: 400;
}

/* FAQ Section */
#section-faq {
    background-color: #fff;
    padding: 80px 0;
}

#section-faq .accordion-item {
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

#section-faq .accordion-button {
    background-color: #fff;
    color: #222;
    font-weight: 600;
    box-shadow: none;
    padding: 20px;
}

#section-faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #f9f9f9;
}

#section-faq .accordion-body {
    padding: 20px;
    color: #555;
    line-height: 1.6;
}

#section-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

#section-faq h2.accordion-header {
    margin-bottom: 0;
}

#section-faq .subtitle {
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dark Background Overlay */
.bg-dark-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/background/2.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Contact Form */
#section-contact .form-label {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: #505050;
    margin-bottom: 6px;
}

#section-contact .form-control {
    border: 1px solid #ddd;
    border-radius: var(--rounded-1);
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

#section-contact .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb), 0.1);
}

#section-contact .form-control.error_input {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

#section-contact input[type="date"] {
    color: #505050;
}

.contact-response-text {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 767px) {
    #section-contact .col-md-3,
    #section-contact .col-md-5 {
        padding: 0 15px;
    }
}

/* Hero Animations */
@keyframes heroEntranceBG {
    0% {
        opacity: 0;
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-zoom {
    opacity: 0; /* Hidden by default */
}

.hero-start .animate-zoom {
    animation: heroEntranceBG 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fade-up {
    opacity: 0; /* Hidden by default */
}

.hero-start .animate-fade-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }