.contact-hero {
    background: linear-gradient(to bottom, #f1f1f1, #ffffff);
    height: 44vh;
}

.world-map {
    position: absolute;
    inset: 0;
    background: url('../../img/bg/world_map.png') center center no-repeat;
    background-size: contain;
    opacity: .12;
    pointer-events: none;
}

/* get in touch */
.contact-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, .03);
    backdrop-filter: blur(2px);
    /* border: 1px solid rgba(0, 0, 0, .08); */
    border-radius: 25px;
    padding: 45px;
}

.contact-form-wrapper .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    /* color: #fff; */
    padding: 15px 0;
}

.contact-form-wrapper .form-control:focus {
    box-shadow: none;
    border-color: #000;
    background: transparent;
    /* color: #fff; */
}

.contact-form-wrapper .form-control::placeholder {
    color: rgba(0, 0, 0, .5);
}

.contact-form-wrapper .form-control.is-invalid {
    border-color: #cf3f2e;
}

.contact-form-wrapper .form-control.is-invalid::placeholder {
    color: rgba(207, 63, 46, .75);
}

.btn-contact {
    display: flex;
    justify-content: center;
}

.contact-submit-btn {
    min-width: 220px;
}

.contact-submit-btn:disabled {
    opacity: .72;
    cursor: not-allowed;
}

.contact-submit-btn.is-loading {
    transform: translateY(0);
}

.contact-form-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.contact-form-alert.is-success {
    color: #155724;
    background: #e8f7eb;
    border-color: #b9e4c1;
}

.contact-form-alert.is-error {
    color: #842029;
    background: #fbe9eb;
    border-color: #f3b8bf;
}

/* faq- */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-icon {
    position: absolute;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    animation: floatFaq 5s ease-in-out infinite;
    user-select: none;
}

.faq-icon-1 {
    font-size: 180px;
    right: 0;
    top: -200px;
    animation-delay: 0s;
}

.faq-icon-2 {
    font-size: 120px;
    right: 5%;
    top: 100px;
    animation-delay: 1s;
}

.faq-icon-3 {
    font-size: 80px;
    right: -40px;
    top: 10%;
    animation-delay: 2s;
}

@keyframes floatFaq {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media(max-width:991px) {
    .faq-decoration {
        display: none;
    }
}

/* social media */
.social-connect-section {
    background: #fff;
    position: relative;
}

.social-connect-box {
    background: linear-gradient(135deg, #000, #111);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.social-connect-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.social-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .6);
}

.social-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
}

.social-content p {
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
}

.social-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.social-card {
    height: 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: .4s;
}

.social-card i {
    font-size: 24px;
}

.social-card span {
    font-weight: 600;
    letter-spacing: .5px;
}

.social-card:hover {
    transform: translateY(-8px);
    background: #fff;
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.twitter svg {
    fill: #fff;
    transition: .4s;
}

.twitter:hover svg {
    fill: #000;
}

@media(max-width:991px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-connect-box {
        padding: 40px 25px;
    }

    .social-content h2 {
        font-size: 36px;
    }
}

@media(max-width:576px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 20px 20px;
    }

    .social-content h2 {
        font-size: 32px;
    }

    .contact-hero {
        height: 8vh;
    }

    .world-map {
        height: 44vh;
    }
}
