.contact-feedback,
.section-triangle {
    background: linear-gradient(90deg, #e0f7fa, #f7fdff);
}
.contact-feedback .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* contact */
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}
.contact-location-img {
    height: 100% !important;
    width: auto !important;
    max-height: 680px;
}

.contact-location {
    position: absolute;
}
.location-1 {
    top: 18%;
    left: 32%;
}
.location-2 {
    top: 79%;
    left: 39%;
}
.location-3 {
    top: 17%;
    left: 38%;
}
.contact-location-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #990012;
}
.contact-location-title i {
    font-size: 28px;
    transition: transform 0.5s ease;
    transform-origin: bottom center;
}
.contact-location-info {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    min-width: 280px;
    flex-direction: column;
    gap: 6px;
}
.location-2 .contact-location-info {
    bottom: 100%;
    left: 0;
}
.location-1 .contact-location-info,
.location-3 .contact-location-info {
    top: 100%;
    left: 0;
}
.contact-location-info h6 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6px;
    color: var(--primary-color);
    white-space: nowrap;
}
.contact-location-info p {
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 0;
}
.contact-location-info i {
    margin-top: 4px;
}
.contact-location:hover .contact-location-title i {
    transform: scale(1.5);
}
.contact-location:hover .contact-location-info {
    display: flex;
    animation: showSubAddress 0.3s linear;
}

@keyframes showSubAddress {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* feedback */
.feedback {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: -24px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.feedback-wrapper {
    background-color: #fff;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.form-group label {
    font-weight: 500;
}

.form-control {
    border-radius: 8px;
}

.captcha-box {
    border-radius: 6px;
}

.refresh-btn {
    min-width: 50px;
    height: 100%;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.refresh-btn:hover {
    background-color: #91caff;
}

.feedback #title,
.feedback input,
textarea {
    width: 100%;
    border: 0;
    outline: none;
    padding: 10px 15px;
    border-radius: 6px;
    min-height: 48px;
    border: 1px solid var(--border-color);
}
.feedback input::placeholder,
.feedback textarea::placeholder {
    color: var(-color-fade);
}
.feedback input:focus,
.feedback textarea:focus {
    outline: 1px solid var(--secondary-color);
}
.feedback input:focus::placeholder,
.feedback textarea:focus::placeholder {
    color: transparent;
}

.feedback-wrapper-submit {
    width: 100%;
    margin-top: 24px;
}
.feedback-wrapper-submit button {
    width: 100%;
    background-color: var(--secondary-color);
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    color: var(--white-color);
    border-radius: 6px;
}

@media (max-width: 992px) {
    .contact-feedback .container {
        flex-direction: column;
    }
}

@media (max-width: 569px) {
    .feedback-wrapper {
        padding: 24px 16px
    }
    .feedback-wrapper-submit button {
        padding: 10px;
    }
    #captcha {
        width: 100% !important;
    }
}


@media (max-width: 460px) {
    .contact-location-info {
        min-width: 220px;
    }
    .location-1 {
        top: 17%;
        left: 29%;
    }
    .location-2 {
        top: 78%;
        left: 36%;
    }
    .location-3 {
        top: 15%;
        left: 36%;;
    }
    .contact-location-info h6 {
        font-size: 15px;
        
    }
    .contact-location-info p {
        font-size: 13px;
    }
    .contact-location-info i {
        font-size: 15px;
    }
}