/* =========================
   Waitlist Form
========================= */
#waitlist {
    background-color: var(--color-surface);
    text-align: center;
    padding-bottom: 2.5rem;
}

#waitlist h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

input,
select {
    width: 100%;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
}

select:hover {
    cursor: pointer;
}

#waitlist-form>button {
    margin-top: 1rem;
    cursor: pointer;
}

.form-subtext {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
    margin-top: 0.25rem;
}

.form-message {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message p {
    margin: 0;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #166534;
}

.form-message.success p {
    color: #166534;
    line-height: 1.5;
}

.form-message.success a {
    color: #fff;
    font-weight: 600;
}

.whatsapp-btn {
    margin-top: 0.75rem;
    background-color: #25D366;
    text-decoration: none;
    transition: all 0.2s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: translateX(4px);
}

.whatsapp-btn:active {
    transform: translateX(0);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #7f1d1d;
    border: 1px solid #7f1d1d;
}

.form-message.error p {
    color: #7f1d1d;
    line-height: 1.5;
}

.partnership-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.partnership-note a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.partnership-note a:hover {
    text-decoration: underline;
}