/**
 * WPBee Honey Leads - Theme 3: Soft & Playful
 * Colorful flat design with soft edges and friendly appearance
 */

/* Theme 3 Modal Overlay */
.wbhl-theme-3 .wbhl-modal-overlay {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(8px);
}

/* Theme 3 Modal Container */
.wbhl-theme-3 .wbhl-modal {
    background: #ffffff;
    border-radius: 24px;
    border: none;
    box-shadow: none;
    overflow: hidden;
    max-width: 460px;
}

/* Theme 3 Modal Header */
.wbhl-theme-3 .wbhl-modal-header {
    border-bottom: none;
    padding: 35px 35px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.wbhl-theme-3 .wbhl-modal-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.wbhl-theme-3 .wbhl-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Theme 3 Modal Body */
.wbhl-theme-3 .wbhl-modal-body {
    padding: 35px;
    background: #fafbff;
}

/* Theme 3 Form Header */
.wbhl-theme-3 .wbhl-form-header h2 {
    color: #1a202c;
    font-size: 26px;
    font-weight: 700;
}

.wbhl-theme-3 .wbhl-form-header p {
    color: #4a5568;
    font-size: 15px;
}

/* Theme 3 Form Fields */
.wbhl-theme-3 .wbhl-form-field {
    margin-bottom: 25px;
}

.wbhl-theme-3 .wbhl-form-field label {
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.wbhl-theme-3 .wbhl-form-field label .required {
    color: #f56565;
}

.wbhl-theme-3 .wbhl-form-field input[type="text"],
.wbhl-theme-3 .wbhl-form-field input[type="email"],
.wbhl-theme-3 .wbhl-form-field input[type="number"],
.wbhl-theme-3 .wbhl-form-field input[type="date"],
.wbhl-theme-3 .wbhl-form-field textarea,
.wbhl-theme-3 .wbhl-form-field select {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #2d3748;
    font-size: 15px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.wbhl-theme-3 .wbhl-form-field input:focus,
.wbhl-theme-3 .wbhl-form-field textarea:focus,
.wbhl-theme-3 .wbhl-form-field select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.wbhl-theme-3 .wbhl-form-field input::placeholder,
.wbhl-theme-3 .wbhl-form-field textarea::placeholder {
    color: #a0aec0;
}

/* Theme 3 Radio and Checkbox */
.wbhl-theme-3 .wbhl-form-field legend {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.wbhl-theme-3 .wbhl-radio-label,
.wbhl-theme-3 .wbhl-checkbox-label {
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.wbhl-theme-3 .wbhl-radio-label:hover,
.wbhl-theme-3 .wbhl-checkbox-label:hover {
    color: #2d3748;
}

.wbhl-theme-3 .wbhl-radio-label input,
.wbhl-theme-3 .wbhl-checkbox-label input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Theme 3 Submit Button */
.wbhl-theme-3 .wbhl-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wbhl-theme-3 .wbhl-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.wbhl-theme-3 .wbhl-submit-btn:active {
    transform: translateY(0);
}

.wbhl-theme-3 .wbhl-submit-btn:disabled {
    background: #cbd5e0;
    box-shadow: none;
    transform: none;
}

/* Theme 3 Close Button */
.wbhl-theme-3 .wbhl-modal-close {
    color: #ffffff;
    font-size: 28px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    right: 15px;
}

.wbhl-theme-3 .wbhl-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Theme 3 Messages */
.wbhl-theme-3 .wbhl-success-message {
    background: #c6f6d5;
    border: none;
    border-radius: 12px;
    color: #22543d;
    padding: 16px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wbhl-theme-3 .wbhl-success-message:before {
    content: "✓";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
}

.wbhl-theme-3 .wbhl-error-message {
    background: #fed7d7;
    border: none;
    border-radius: 12px;
    color: #742a2a;
    padding: 16px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wbhl-theme-3 .wbhl-error-message:before {
    content: "✕";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #f56565;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
}

/* Theme 3 Loading State */
.wbhl-theme-3 .wbhl-form.wbhl-loading {
    opacity: 0.7;
}

.wbhl-theme-3 .wbhl-form.wbhl-loading .wbhl-submit-btn {
    background: #a0aec0;
}

/* Theme 3 Trigger Button */
.wbhl-theme-3 .wbhl-trigger-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wbhl-theme-3 .wbhl-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.wbhl-theme-3 .wbhl-trigger-btn:active {
    transform: translateY(0);
}

/* Theme 3 Custom animations */
@keyframes theme3-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.wbhl-theme-3 .wbhl-modal {
    animation: theme3-bounce 0.5s ease-out;
}