.form-row {
    display: flex;
    flex-direction: column;
}

.booking-box label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    text-align: left;
    margin-left: 12px;
}

.booking-box input,
.booking-box select,
.booking-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 4px;
    box-sizing: border-box;
}

.booking-box textarea {
    min-height: 120px;
}

.booking-box .recaptcha-block {
    margin: 20px 0;
}

.booking-box button.booking-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
}

.form-column h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}
/* Make certain elements span both columns */
.full-width {
    grid-column: span 2;
}

/* Center alignment for recaptcha and text */
.recaptcha-info,
.recaptcha-center,
.delivery-note {
    text-align: center;
}

/* Recaptcha info text */
.recaptcha-info p {
    font-weight: 600;
    margin: 10px 0 12px;
    color: #333;
}

/* Center the actual recaptcha widget */
.recaptcha-center {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Reassurance text */
.delivery-note {
    font-size: 1rem;
    color: #444;
    margin: 10px 0 20px;
}

/* Ensure booking button stays pink and full width */
.booking-btn {
    background: #d6008f !important;
    color: #fff !important;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.booking-btn:hover {
    background: #b00078 !important;
}
.recaptcha-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/* FORM CONTAINER */
.booking-box {
    background: #faf7fb; /* soft blush tint */
    border-radius: 12px;

}

/* FORM LABELS */
.booking-box label {
    font-weight: 700;
    color: #d6008f;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* INPUTS & SELECTS */
.booking-box input,
.booking-box select,
.booking-box textarea {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* INPUT FOCUS STATE */
.booking-box input:focus,
.booking-box select:focus,
.booking-box textarea:focus {
    border-color: #d6008f;
    box-shadow: 0 0 0 3px rgba(214, 0, 143, 0.15);
    outline: none;
}

/* SECTION HEADERS */
.form-column h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d6008f;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0d6e8;
    padding-bottom: 6px;
}

/* SPACING BETWEEN FIELDS */
.form-row {
    margin-bottom: 12px;
}
/* ============================
   CONTACT PAGE WRAPPER
============================ */
.contact-page {
    padding: 40px 0;
}

.content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   HEADINGS
============================ */
.contact-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #c2185b;
}

.contact-page h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

/* ============================
   SECTIONS
============================ */
.contact-intro,
.contact-entertainers,
.contact-email {
    margin-bottom: 30px;
}

.contact-intro p,
.contact-entertainers p,
.contact-email p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ============================
   CONTACT FORM
============================ */
.contact-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-form .form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.contact-form .textbox,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form .textbox:focus,
.contact-form textarea:focus {
    border-color: #c2185b;
    background: #fff;
    outline: none;
}

/* ============================
   BUTTON
============================ */
.contact-form .btn-primary {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
}

/* ============================
   ERROR MESSAGE
============================ */
.form-error {
    background: #ffdddd;
    border: 1px solid #ff9999;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #a00;
    font-weight: 600;
}
/* ==========================================
   DRAG ACTS — UNIFIED FORM LAYOUT SYSTEM
   (added once, used everywhere)
========================================== */

.dq-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 6px;
}

.form-section {
    background: #f7f3f9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.form-row {
    margin-bottom: 4px;
}

.form-row label {
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 4px 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Two-column rows (auto-stack on mobile) */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booking-btn {
    width: 100%;
    padding: 14px;
    background: #d100a3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}
/* Hide Stage 2 fields on the enquiry page */
.form-row.hide-stage2 {
    display: none;
}





