.elementor-592 .elementor-element.elementor-element-f96d143{--display:flex;}/* Start custom CSS *//* ============================
   REPAIR REQUEST FORM PAGE
   Premium Modern Style
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

.cp-request {
    font-family: 'Inter', sans-serif;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F7F7F7 0%, #F2F2F2 40%, #ECECEC 100%);
}

/* HERO */
.cp-req-hero {
    text-align: center;
    margin-bottom: 60px;
}

.cp-req-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #C8102E; /* BRAND RED */
    margin-bottom: 10px;
}
.elementor .cp-req-title,
.cp-request .cp-req-title {
    color: #C8102E !important;
}

.cp-req-subtitle {
    font-size: 20px;
    color: #4A4A4A;
}

/* FORM */
.cp-req-form {
    max-width: 900px;
    margin: 0 auto;
}

.cp-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cp-form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.cp-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Fix dropdown text clipping */
.cp-field select {
    height: 52px;              /* Taller field */
    padding: 12px 14px;        /* More breathing room */
    font-size: 16px;           /* Matches your input fields */
    line-height: 1.4;          /* Prevents text clipping */
    appearance: none;          /* Removes browser default styling */
    background-position: right 14px center;
}


.cp-field label {
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 18px;
    color: #1A1A1A;
}

.cp-field input,
.cp-field select,
.cp-field textarea {
    padding: 14px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: 0.2s ease;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
    border-color: #C8102E;
    box-shadow: 0 0 0 2px rgba(200,16,46,0.15);
}

.cp-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* SUBMIT BUTTON */
.cp-submit-btn {
    margin-top: 30px;
    width: 100%;
    background: #C8102E; /* BRAND RED */
    color: #FFF;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.cp-submit-btn:hover {
    background: #A50D25;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cp-form-row {
        flex-direction: column;
    }
}/* End custom CSS */