/* ==========================================================================
   Page Title Area (Consistent with other pages)
   ========================================================================== */
.page-title-area {
    background-color: var(--deep-blue); /* Or your desired background */
    padding: 2rem 0;
    text-align: center;
}

.page-title-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
 .breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

/* ==========================================================================
  Laundry Order Section
   ========================================================================== */

.laundry-order-section {
    padding: 7.1875rem 0 4.375rem; /* 115px top, 70px bottom */
    background-color: var(--white);
}
.laundry-order-section h2 {
color: var(--deep-blue);
}
.laundry-order-section h6 {
    color: var(--accent-blue);
}
.laundry-form {
    /*  No specific styles, let form elements and grid handle layout */
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1.5rem;  /*  Increased gap */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 5px rgba(var(--accent-blue), 0.5);
}

textarea.form-control {
    height: 150px; /* Adjust as needed */
    resize: vertical;
}

/*  Radio Button Styling */
.service-choice label {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
    cursor: pointer;
}

.service-choice input[type="radio"] {
    margin-right: 0.5rem;
    /*  Optional: Style the radio button itself (more complex) */
    /*  Requires hiding the default radio and using a custom element */
}
 .service-choice  {
      grid-column: span 2;
}
/*  Custom Service Fields (Initially Hidden) */
.custom-service-fields {
    /* display: none;  JS handles this */
    /*  Add styles for when it's visible, if needed */
     grid-column: span 2;
     margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Required Field Indicator */
.required {
    color: var(--danger-red);
}
/* Clothing Field*/
.clothing-fields {
     grid-column: span 2;
     margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .form-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
     .service-choice  {
      grid-column: span 1;
}
}