/* ===== WRAPPER ===== */
.cu-wrapper {
    max-width: 520px;
    padding: 10px 0 40px;
    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
}

/* ===== BADGE ===== */
.cu-badge {
    display: inline-block;
    background: #FF40001A;
    color: #FF4000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 101px;
    margin-bottom: 18px;
    letter-spacing: .01em;
}

/* ===== HEADING ===== */
.cu-heading {
    font-size: clamp(26px, 5vw, 46px);
    font-weight: 700;
    color: #363332;
    line-height: 1.2;
    margin: 0 0 36px;
    letter-spacing: -0.02em;
}

/* ===== FORM ===== */
.contact-us-form {
    display: flex;
    flex-direction: column;
}

/* ===== FIELD ===== */
.cu-field {
    position: relative;
    margin-bottom: 28px;
}

/* ===== INPUTS & TEXTAREA ===== */
.cu-field input,
.cu-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #d0d0d0;
    background: transparent;
    padding: 18px 0 8px;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s;
    font-family: inherit;
    resize: none;
}

.cu-field input:focus,
.cu-field textarea:focus {
    border-bottom-color: #e8430a;
}

/* ===== FLOATING LABEL ===== */
.cu-field label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 16px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.2s ease;
}

.cu-field input:focus ~ label,
.cu-field input:not(:placeholder-shown) ~ label,
.cu-field textarea:focus ~ label,
.cu-field textarea:not(:placeholder-shown) ~ label {
    top: 2px;
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.03em;
}


/* ===== SUBMIT BUTTON ===== */
#submit-contact-us-form {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    background: #e8430a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 10px 10px 28px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

#submit-contact-us-form:hover {
    background: #c93608;
    transform: translateY(-1px);
}

#submit-contact-us-form:active {
    transform: translateY(0);
}

.cu-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #e8430a;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .cu-heading {
        font-size: 26px;
    }
    #submit-contact-us-form {
        font-size: 15px;
    }
}