/* ============================================================
   PodOps CRM – Frontend Booking Form
   ============================================================ */

.podops-booking-wrap {
    --accent: #6366f1;
    --radius: 10px;
    --shadow: 0 8px 32px rgba(0,0,0,.10);
    max-width: 680px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.podops-booking-form-container {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 40px;
    border-top: 4px solid var(--accent);
}

.podops-booking-title {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.podops-booking-title::before {
    content: "🎙️";
}

/* ── Form layout ──────────────────────────────────────────── */
.podops-form-row {
    margin-bottom: 18px;
}
.podops-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.podops-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.podops-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.podops-field label .req {
    color: #EF4444;
}

.podops-field input,
.podops-field select,
.podops-field textarea {
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.podops-field input:focus,
.podops-field select:focus,
.podops-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.podops-field input.error,
.podops-field select.error {
    border-color: #EF4444;
}

.podops-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── Submit button ────────────────────────────────────────── */
.podops-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .3px;
}
.podops-submit-btn:hover {
    background: #4f46e5;
    box-shadow: 0 4px 16px rgba(99,102,241,.35);
}
.podops-submit-btn:active {
    transform: scale(.99);
}
.podops-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* ── Error message ────────────────────────────────────────── */
.podops-error-msg {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 13px;
    margin-bottom: 12px;
}

/* ── Success state ────────────────────────────────────────── */
.podops-success {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px 40px;
    text-align: center;
    border-top: 4px solid #10B981;
}
.podops-success-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.podops-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
}
.podops-success p {
    font-size: 15px;
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
    .podops-booking-form-container {
        padding: 24px 20px;
    }
    .podops-two-col {
        grid-template-columns: 1fr;
    }
    .podops-booking-title {
        font-size: 20px;
    }
}
