.hero {
    background: url('https://www.thedroneu.com/wp-content/uploads/2026/02/contactusbg.png') no-repeat right/cover;
    isolation: isolate;
    position: relative;
}
.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0), rgba(0,0,0,0.73) 34%, rgba(0,0,0,0.35) 85%, rgba(0,0,0) 100%);
    z-index: -1;
}
.hero .content {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 60px 0;
}
.hero span {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #44A7F1;
}
.hero h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
}
.hero p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #FFFFFF;
}
.contact-us .content {
    padding: 80px 0;
}
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.support-content .block {
    background: #1E516D;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px 20px;
}
.support-content .block .icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FF7A00;
    border: 5px solid #fff;
    margin-top: -42px;
    margin-bottom: 20px;
}
.support-content .block .icon svg {
    max-width: 36px;
    max-height: 36px;
}
.support-content .block .text > * {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #FFFFFF;
}
.contact-us .content form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-top: 70px;
}
.field-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #000000;
    display: block;
    margin-bottom: 7px;
}
.field-set {
    width: 100%;
    height: 65px;
    border: 1px solid #A6A6A6;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 16px;
}
.field-set:focus,
.field-set:focus-visible {
    outline: 1px solid #A6A6A6;
    border-color: #A6A6A6;
}
.field-set.valid-error,
.field-set.valid-error:focus,
.field-set.valid-error:focus-visible {
    outline-color: #dc3232;
    border-color: #dc3232;
}
textarea.field-set {
    height: 187px;
    resize: none;
}
.field-set-wrapper.textarea,
.captcha-row {
    grid-column: 1 / -1;
}
.captcha-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 700px;
}
.captcha-row p {
    grid-column: 1 / -1;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}
.captcha-row p a {
    color: #FF7A00;
}
.captcha-input {
    position: relative;
    display: flex;
    align-items: center;
    height: 65px;
    border: 1px solid #A6A6A6;
    border-radius: 6px;
    background: #F5F5F5;
    border-color: #F5F5F5;
    padding-right: 50px;
    padding-left: 15px;
}
.captcha-input .refresh-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
}
.submit-btn input {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #A6A6A6;
    border-radius: 6px;
    background: #FF7A00;
    border-color: #FF7A00;
    color: #fff;
    margin-top: 23px;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
}
.contact-map-section {
    min-height: 500px;
}
.contact-map-section iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
}
.imgcaptcha_div{
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    user-select: none;
}
.confirm-popup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.cs-popup-container {
    width: calc(100% - 20px);
    max-width: 600px;
    min-height: calc(100% - 40px);
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-popup-contents{
    background: #FFF;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    position: relative;
}

.cs-popup-contents .popup-cross {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.cs-popup-contents .popup-cross img{
    display: block;
    max-width: 100%;
}
.cs-popup-contents .approve-img{
    text-align: center;
}
.cs-popup-contents .popup-message{
    font-size: 28px;
    color: var(--clr-pri);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
}
@media screen and (max-width: 1600px) {
    .hero h2 {
        font-size: 30px;
    }
    .hero p {
        font-size: 17px;
    }
    .contact-us .content {
        padding: 80px 0 50px;
    }
    .support-content .block {
        padding: 0 15px 15px;
    }
    .support-content .block .text > * {
        font-size: 18px;
    }
    .contact-us .content form {
        margin-top: 50px;
    }
    .field-set,
    .captcha-input,
    .submit-btn input {
        height: 50px;
    }
    .submit-btn input {
        font-weight: 700;
    }
    .field-label,
    .submit-btn input,
    .captcha-row p {
        font-size: 15px;
    }
    textarea.field-set {
        height: 120px;
    }
}
@media screen and (max-width: 1400px) {
    .contact-us .content {
        padding: 60px 0;
    }
    .support-content .block .text > * {
        font-size: 16px;
    }
    .support-content .block .icon {
        width: 75px;
        height: 75px;
        margin-top: -38px;
    }
    .support-content .block .icon svg {
        max-width: 32px;
        max-height: 32px;
    }
}
@media screen and (max-width: 1200px) {
    .field-set {
        padding: 10px;
    }
    .hero .content {
        padding: 50px 0;
        max-width: 590px;
    }
    .hero span {
        font-size: 15px;
    }
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
        line-height: 1.4;
    }
    .support-content {
        gap: 15px;
    }
    .contact-us .content form {
        gap: 20px 15px;
    }
    .captcha-row {
        gap: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .field-set,
    .captcha-input,
    .submit-btn input {
        height: 45px;
    }
    .field-label,
    .submit-btn input,
    .captcha-row p {
        font-size: 14px;
    }
    .support-content .block .icon {
        width: 65px;
        height: 65px;
        margin-top: -32px;
        margin-bottom: 15px;
    }
    .support-content .block .icon svg {
        max-width: 30px;
        max-height: 30px;
    }
    .support-content .block .text > * {
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 15px;
    }
    .support-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 15px;
    }
    .support-content .block:first-child {
        grid-column: 1 / -1;
    }
    .support-content .block .text > * {
        font-size: 15px;
    }
}
@media screen and (max-width: 575px) {
    .contact-us .content {
        padding: 30px 0;
    }
    .contact-us .content form {
        margin-top: 30px;
    }
    .captcha-row {
        grid-template-columns: 1fr 1fr;
    }
    .field-set-wrapper.captcha-gp {
        grid-column: 1 / 2;
    }
    .submit-btn {
        grid-column: 2 / -1;
    }
    .field-label, .submit-btn input, .captcha-row p {
        font-size: 14px;
    }
    .support-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .support-content .block {
        flex-direction: row;
        gap: 10px;
        padding: 15px;
        border-radius: 12px;
    }
    .support-content .block .icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        border: none;
        margin: 0;
    }
    .support-content .block .icon svg {
        max-width: 22px;
        max-height: 22px;
    }
    .support-content .block .text > * {
        text-align: left;
    }
    .cs-popup-contents .popup-cross img{
        height: auto;
        max-width: 100px;
    }
    .cs-popup-contents .popup-message{
        font-size: 20px;
    }
}
@media screen and (max-width: 480px) {
    .contact-us .content form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .captcha-wrapper {
        grid-column: 1 / -1;
    }
}