/* Form Container */
.wsv-form-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 30px;
    background: transparent;
    direction: rtl;
    font-family: 'Tahoma', sans-serif;
}

.wsv-field-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.wsv-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1d1d1b;
}

.wsv-field-group label .required {
    color: #e74c3c;
}

.wsv-field-group input[type="text"],
.wsv-field-group input[type="email"],
.wsv-field-group input[type="tel"],
.wsv-field-group select,
.wsv-field-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0d0b0; /* Light gold border as in image */
    border-radius: 30px; /* Rounded corners as in image */
    background: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wsv-field-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.wsv-field-group select {
    height: 45px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%23c0a060%22%20d%3D%22M10.293%203.293L6%207.586%201.707%203.293A1%201%200%2000.293%204.707l5%205a1%201%200%20001.414%200l5-5a1%201%200%2010-1.414-1.414z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
}

.wsv-field-group input:focus,
.wsv-field-group textarea:focus {
    outline: none;
    border-color: #c0a060;
    box-shadow: 0 0 5px rgba(192, 160, 96, 0.2);
}

/* File Input */
.wsv-file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.wsv-file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.wsv-file-custom-label {
    display: block;
    padding: 12px 20px;
    background: #f9f9f9;
    border: 1px dashed #e0d0b0;
    border-radius: 30px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Submit Button */
.wsv-form-footer {
    text-align: right;
    margin-top: 25px;
}

.wsv-submit-btn {
    background-color: #c0a060; /* Gold/Brown color from image */
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.wsv-submit-btn:hover {
    background-color: #a08040;
    transform: translateY(-2px);
}

/* Response Messages */
.wsv-form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.wsv-form-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wsv-form-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Consultation form specific (Blue button) */
.wsv-consultation-form .wsv-submit-btn {
    background-color: #005a9c; /* Dark blue from the second image */
}
.wsv-consultation-form .wsv-submit-btn:hover {
    background-color: #004070;
}
