/* HERO TEXT ANIMATION */
.hero-title {
    opacity: 0;
    transform: translateY(-30px);
    animation: dropFade 1s ease forwards;
}

.hero-subtext {
    opacity: 0;
    transform: translateY(20px);
    animation: riseFade 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes dropFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.contact-section p {
    transition: 0.3s;
}

.contact-background {
    background: url("multimedia/Screenshot\ 2026-02-17\ 222202.jpg") center center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    color: white;
}

.contact-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-background > * {
    position: relative;
    z-index: 2;
}
.contact-section a {
    transition: all 0.3s ease;
}

.contact-section a:hover {
    padding-left: 5px;
    color: #0d6efd !important;
}
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


.contact-assurance {
    background: #f8f9fa;
}

.assurance-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: #ffffff;
}

.assurance-icon {
    font-size: 1.8rem;
    color: #ffffff;
}

.faq-section {
    background: #f8f9fa;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #6c757d;
}

.faq-card.active .faq-answer {
    max-height: 1000px; /* adjust if answers are longer */
    margin-top: 12px;
}
.faq-card {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faq-question {
    cursor: pointer;
}

@media (max-width: 768px) {

    .contact-section {
        text-align: center;
    }

    .assurance-box {
        margin-top: 20px;
    }

    .faq-card {
        text-align: left;
    }

}



