.catering-page-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
    background: url('../../assets/img/blurred-chicken-2.png') center/cover fixed no-repeat;
    min-height: 100vh;
}

/* The Large Form Card */
.catering-form-card {
    background: rgba(230, 230, 230, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Custom Inputs to match the light grey style */
.catering-input {
    background: #dcdcdc;
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    color: #333;
}

.catering-input:focus {
    background: #e5e5e5;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.catering-input::placeholder {
    color: #999;
}

/* Contact Pills (consistent with Contact Page) */
.contact-method-pill {
    background: rgba(235, 235, 235, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.icon-circle {
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Breadcrumb Tweak */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}