.contactus-form-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 331px;
    background: #e6fffa; /* light cyan background */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    z-index: 9999;
}

.contactus-header {
    background: linear-gradient(to bottom, #0080c9, #004080);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

#contactus-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

#contact {
    padding: 15px;
}

#contact label {
    display: block;
    font-weight: bold;
    margin: 8px 0 4px;
    color: #222;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

#contact textarea {
    resize: vertical;
    min-height: 80px;
}

/* Button styled like screenshot */
.send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #0094d9, #004080) !important;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 22px;
    border: none;
    border-radius: 25px !important;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.send-btn .arrow-icon {
    background: #fff;
    color: #004080;
    font-size: 14px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.send-btn::before {
    margin-right: 6px;
    font-size: 14px;
}

.send-btn:hover {
    background: linear-gradient(to bottom, #00a6f3, #005599);
}

#contact-response {
    margin: 10px;
    font-size: 14px;
    font-weight: bold;
    color: green;
}

#contactus-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#contactus-button button {
    background: linear-gradient(to bottom, #00a6f3, #003b82);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#contactus-button button img {
    color: #004080;
    font-size: 14px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
