/* assets/style.css */
:root {
    --ws-bg: #fceeff;
    --ws-text: #2c2c2c;
    --ws-accent: #ff8e5e; 
    --ws-accent-2: #f25488; 
    --ws-input-bg: rgba(255, 255, 255, 0.5);
    --ws-border: #a89bb0;
    --ws-radius: 20px;
    --ws-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --ws-spacing: 2.5rem;
}

.ws-container, .ws-container * { box-sizing: border-box; }

.ws-container {
    background-color: var(--ws-bg);
    border-radius: var(--ws-radius);
    padding: var(--ws-spacing);
    width: 100%; 
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--ws-font);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ws-decoration-circle {
    position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(242, 84, 136, 0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
    z-index: 0;
}

.ws-header, .ws-form { position: relative; z-index: 1; }

.ws-header h2 {
    font-size: 1.6rem; font-weight: 800; color: #1a1a1a; margin: 0 0 0.5rem 0; line-height: 1.2;
}
.ws-header p {
    font-size: 1.1rem; color: #4a4a4a; margin: 0 0 1.5rem 0; font-weight: 400;
}
.ws-heart {
    color: #ff477e; display: inline-block; animation: heartBeat 1.5s infinite;
}

.ws-group { margin-bottom: 1.2rem; text-align: left; }
.ws-group label {
    display: block; font-size: 0.9rem; color: #444; margin-bottom: 0.4rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.ws-group input, .ws-group textarea, .ws-group select {
    width: 100%; padding: 14px 15px;
    border: 1px solid rgba(255,255,255,0.5); background: var(--ws-input-bg);
    border-radius: 12px; font-size: 16px; color: #333;
    transition: all 0.3s ease; -webkit-appearance: none; appearance: none;
}
.ws-select-wrapper { position: relative; }
.ws-select-wrapper::after {
    content: '▼'; font-size: 0.8rem; color: var(--ws-accent-2);
    position: absolute; right: 15px; top: 50%; transform: translateY(-50%); pointer-events: none;
}
.ws-group input:focus, .ws-group textarea:focus, .ws-group select:focus {
    outline: none; background: #fff; border-color: var(--ws-accent-2);
    box-shadow: 0 0 0 4px rgba(242, 84, 136, 0.15); transform: translateY(-2px);
}
.ws-group textarea { resize: none; height: 100px; font-family: inherit; }

.ws-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 2rem; flex-wrap: wrap; gap: 15px;
}
.ws-required { font-size: 0.8rem; color: #777; font-weight: 600; }

.ws-btn {
    background: linear-gradient(90deg, var(--ws-accent) 0%, var(--ws-accent-2) 100%);
    color: white; border: none; padding: 14px 40px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; cursor: pointer; position: relative; overflow: hidden;
    box-shadow: 0 4px 15px rgba(242, 84, 136, 0.4); transition: all 0.3s ease;
}
.ws-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 25px rgba(242, 84, 136, 0.5); }
.btn-shine {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shine 3s infinite;
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.2; } 100% { transform: scale(1); opacity: 0.5; } }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
@keyframes shine { 100% { left: 200%; } }

@media screen and (max-width: 480px) {
    .ws-container { padding: 1.5rem; }
    .ws-footer { flex-direction: column-reverse; }
    .ws-btn { width: 100%; }
}