/* --- LUXURY FORM CONTAINER --- */
.graze-form-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* --- THE 2-COLUMN GRID SYSTEM --- */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.form-col {
    width: 50%;
}
@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
    .form-col { width: 100%; }
}

/* --- INPUT FIELDS --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 textarea, 
.wpcf7 select {
    width: 100%;
    background-color: #FAFAFA;
    border: 1px solid #EAE0D5; /* Gold Border */
    padding: 15px;
    font-size: 14px;
    color: #333;
    border-radius: 0px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Textarea specific height */
.wpcf7 textarea {
    height: 120px;
}

/* Focus State */
.wpcf7 input:focus, .wpcf7 textarea:focus {
    border-color: #CBB994;
    background-color: #fff;
    outline: none;
}

/* --- LABELS --- */
.graze-form-container label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.sub-label {
    margin-top: 15px;
    color: #D8A7A2 !important; /* Blush accent for sub-questions */
}

/* --- CHECKBOX & RADIO SECTIONS --- */
.form-checkbox-section {
    margin-top: 30px;
    margin-bottom: 30px;
    background: #F9F9F7;
    padding: 30px;
    border: 1px solid #EAE0D5;
}

/* --- ELOQUENT SECTION HEADINGS --- */
.section-title {
    font-family: 'Playfair Display', serif; 
    font-size: 26px !important; /* Bigger for impact */
    font-style: italic; /* The secret to the aesthetic look */
    font-weight: 500;
    text-transform: none !important; /* Lowercase/Title case is more elegant */
    color: #333 !important; /* Dark Grey */
    text-align: center; /* Center it */
    display: block;
    position: relative;
    margin-bottom: 30px !important;
    padding-bottom: 10px;
    border-bottom: none; /* Remove the old full-width line */
}

/* Add the small Blush Pink decorative line underneath */
.section-title::after {
    content: "";
    display: block;
    width: 50px; /* A short, elegant dash */
    height: 2px;
    background-color: #D8A7A2; /* Blush Pink Accent */
    margin: 15px auto 0 auto; /* Center it perfectly */
}

/* --- ADJUST SUB-LABELS (Dietary/Access) --- */
/* Make the smaller questions look nice too */
.sub-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D8A7A2; /* Blush color to stand out */
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
/*     text-align: center; /* Center these too for symmetry */ */
}

/* Checkbox/Radio Item Styling */
.wpcf7-list-item {
    display: block;
    margin: 8px 0;
    font-size: 15px;
    color: #555;
}

/* --- SUBMIT BUTTON --- */
.wpcf7 input[type="submit"] {
    width: 100%;
    background-color: #D8A7A2;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}
.wpcf7 input[type="submit"]:hover {
    background-color: #CBB994;
}