/* WEE Lead Capture — Form Styles */
.weelc-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(145deg, #16213e, #1a1a2e);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.05);
}

.weelc-field {
    margin-bottom: 20px;
}

.weelc-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #a0a0b8;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.weelc-field select,
.weelc-field input,
.weelc-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15,52,96,0.4);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 10px;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.weelc-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.weelc-field select:focus,
.weelc-field input:focus,
.weelc-field textarea:focus {
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.weelc-field input::placeholder,
.weelc-field textarea::placeholder {
    color: rgba(160,160,184,0.4);
}

.weelc-field input:focus,
.weelc-field textarea:focus {
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.weelc-field textarea {
    resize: vertical;
    min-height: 80px;
}

.weelc-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.weelc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}

.weelc-submit:active {
    transform: translateY(0);
}

.weelc-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.weelc-privacy {
    text-align: center;
    font-size: 12px;
    color: #a0a0b8;
    margin-top: 16px;
    line-height: 1.5;
}

.weelc-privacy a {
    color: #d4af37;
    text-decoration: underline;
    text-decoration-color: rgba(212,175,55,0.3);
}

.weelc-privacy a:hover {
    text-decoration-color: #d4af37;
}

/* Success state */
.weelc-success {
    text-align: center;
    padding: 40px 20px;
    animation: weelcFadeIn 0.5s ease;
}

.weelc-check-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #d4af37;
}

.weelc-check-icon svg {
    width: 100%;
    height: 100%;
}

.weelc-check-icon circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: weelcCircle 0.6s ease forwards;
}

.weelc-check-icon path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: weelcCheck 0.4s 0.4s ease forwards;
}

.weelc-success h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 8px;
}

.weelc-success p {
    font-size: 15px;
    color: #a0a0b8;
    margin: 0;
}

@keyframes weelcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes weelcCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes weelcCheck {
    to { stroke-dashoffset: 0; }
}

/* Error */
.weelc-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .weelc-form-wrap {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: 12px;
    }
    .weelc-field input,
    .weelc-field textarea {
        padding: 12px 14px;
        font-size: 16px; /* prevent iOS zoom */
    }
    .weelc-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
}
