/* ── Pricing Wizard Fluent Form Styling ──────────────── */
.fluent-form-wrapper input[type="text"],
.fluent-form-wrapper input[type="email"],
.fluent-form-wrapper input[type="tel"],
.fluent-form-wrapper textarea,
.fluent-form-wrapper select {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    /* rounded-xl */
    padding: 0.75rem 1rem;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.95rem;
    color: #0f172a;
}

.fluent-form-wrapper input:focus,
.fluent-form-wrapper textarea:focus,
.fluent-form-wrapper select:focus {
    border-color: #0f172a;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}

.fluent-form-wrapper button[type="submit"] {
    background-color: #0f172a !important;
    color: #fff !important;
    padding: 1rem 2rem !important;
    border-radius: 9999px !important;
    /* rounded-full */
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    margin-top: 1rem;
    width: 100%;
}

.fluent-form-wrapper button[type="submit"]:hover {
    background-color: #1e293b !important;
    transform: scale(1.02);
}

/* Hide Fluent Form labels if handled by placeholders, 
   but usually cleaner to keep them. Let's start with fields. */
.fluentform .ff-el-group {
    margin-bottom: 1.5rem;
}

.fluentform .ff-el-form-control {
    margin-bottom: 0;
}

/* -- Success Message & PDF Link --------------------- */
.fluent-form-wrapper .ff-message-success {
    background-color: transparent !important;
    border: none !important;
    color: #334155 !important;
    text-align: center;
    padding: 2rem 0 !important;
    font-size: 1.1rem;
}

/* Style the PDF download link as a button */
.fluent-form-wrapper .ff-message-success a {
    display: inline-block;
    background-color: #2563eb; /* Primary Blue from Tailwind blue-600 */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.fluent-form-wrapper .ff-message-success a:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}
