/* Contact Section Styling Web*/
.contact-section {
    background-color: #f1f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-radius: 0;
    padding-top: 50px;
    padding-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.contact-section h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 80px;
    animation: fadeInUp 1.2s ease-in-out forwards 0.2s;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000000;
    margin-left: 80px;
    animation: fadeInUp 1.2s ease-in-out forwards 0.4s;
}

.contact-section .btn-primary {
    background-color: #F16A23;
    border-color: #F16A23;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 80px;
    animation: fadeInUp 1.2s ease-in-out forwards 0.6s;
}

.contact-section .btn-primary:hover,
.contact-section .btn-primary:active,
.contact-section .btn-primary:focus {
    background-color: #bb670e;
}

.contact-section .btn-dark {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    animation: fadeInUp 1.2s ease-in-out forwards 0.6s;
}

#btnContact {
    width: 200px;
    text-align: center;
    display: inline-block;
}

.contact-section .position-relative {
    position: relative;
    animation: fadeInUp 1.5s ease-in-out forwards 1s;
}

.img-background {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.img-foreground {
    position: absolute;
    top: 85%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 50%;
    border-radius: 15px;
}

.container-wrapper {
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Styling Mobile*/
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 1.5rem;
        margin-left: 10px;
        text-align: left;
        padding-top: 20px;
    }

    .contact-section p {
        font-size: 1rem;
        margin-left: 10px;
        text-align: left;
    }

    .contact-section .btn-primary {
        font-size: 1rem;
        padding: 8px 15px;
        margin-left: 2%;
        text-align: center;
        flex-direction: none;
    }

    .contact-section .btn-dark {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin-left: 2%;
        flex-direction: row;
    }

    .contact-section .button-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #btnContact {
        width: 95%;
    }

    .img-background {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .img-foreground {
        width: 50%;
        top: 78%;
        left: 75%;
    }
}
