/**
 * Petsity Contact Request - Contact Form Styles
 * Services grouped by pet type (Dog, Cat, Exotic Pet) with card-based design
 */

/* =====================================================
   PAGE LAYOUT
   ===================================================== */
.pcr-contact-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pcr-contact-page-wrapper.pcr-single-column {
    display: block;
}

/* =====================================================
   BACK LINK
   ===================================================== */
.pcr-back-link-wrapper {
    margin-bottom: 20px;
    text-align: left;
}

.pcr-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.pcr-back-link:hover {
    color: #E75301;
    text-decoration: none;
    border-color: #E75301;
    background: #fff7ed;
    transform: translateX(-2px);
}

.pcr-back-link svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.pcr-back-link:hover svg {
    transform: translateX(-3px);
}

.pcr-back-link i {
    font-size: 12px;
}

/* =====================================================
   PROVIDER HEADER
   ===================================================== */
.pcr-provider-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pcr-provider-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pcr-provider-avatar {
    flex-shrink: 0;
}

.pcr-provider-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pcr-provider-details h1 {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.pcr-provider-tagline {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* =====================================================
   FORM CONTAINER
   ===================================================== */
.pcr-form-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.pcr-form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.pcr-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
}

.pcr-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.pcr-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #E75301;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

/* =====================================================
   SERVICES GROUPED BY PET TYPE - CARD DESIGN
   ===================================================== */
.pcr-services-grouped {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Each Pet Type Group Card (Dog, Cat, Exotic Pet) */
.pcr-service-group-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Group Header - Shows Pet Type Icon + Name */
.pcr-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.pcr-group-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pcr-group-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

/* Services List Inside Each Group */
.pcr-service-list {
    background: #fff;
}

/* Individual Service Item */
.pcr-service-item {
    display: block;
    cursor: pointer;
    margin: 0;
}

.pcr-service-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pcr-service-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.15s ease;
}

.pcr-service-item:last-child .pcr-service-item-content {
    border-bottom: none;
}

.pcr-service-item-content:hover {
    background-color: #fafafa;
}

.pcr-service-item input[type="radio"]:checked+.pcr-service-item-content {
    background-color: #fff7ed;
}

/* Service Text (Name + Description) */
.pcr-service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pcr-service-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pcr-service-desc {
    font-size: 12px;
    font-weight: 500;
    color: #E75301;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Radio Circle */
.pcr-service-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pcr-service-item input[type="radio"]:checked+.pcr-service-item-content .pcr-service-radio {
    background: #E75301;
    border-color: #E75301;
    color: #fff;
}

.pcr-no-services {
    text-align: center;
    color: #666;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* =====================================================
   LEGACY CLASS SUPPORT (Backward Compatibility)
   ===================================================== */
/* Map old class names to new ones */
.pcr-services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pcr-service-group {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.pcr-group-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.pcr-group-services {
    background: #fff;
}

.pcr-service-row {
    display: block;
    cursor: pointer;
    margin: 0;
}

.pcr-service-row input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pcr-service-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.15s ease;
}

.pcr-service-row:last-child .pcr-service-content {
    border-bottom: none;
}

.pcr-service-content:hover {
    background-color: #fafafa;
}

.pcr-service-row input[type="radio"]:checked+.pcr-service-content {
    background-color: #fff7ed;
}

.pcr-service-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.7;
}

.pcr-service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pcr-service-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pcr-service-row input[type="radio"]:checked+.pcr-service-content .pcr-service-check {
    background: #E75301;
    border-color: #E75301;
    color: #fff;
}

/* =====================================================
   DATE PICKER
   ===================================================== */
.pcr-date-picker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pcr-date-range-group {
    width: 100%;
}

.pcr-date-range-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcr-date-range-input-wrapper {
    position: relative;
}

.pcr-date-range-input {
    width: 100%;
    padding: 14px 16px;
    padding-right: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.pcr-date-range-input:hover {
    border-color: #d1d5db;
}

.pcr-date-range-input:focus {
    outline: none;
    border-color: #E75301;
}

.pcr-calendar-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   TIME INPUTS
   ===================================================== */
.pcr-time-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.pcr-time-field {
    flex: 1;
    min-width: 0;
}

.pcr-time-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcr-time-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #6b7280;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.pcr-time-select:hover {
    border-color: #d1d5db;
}

.pcr-time-select:focus {
    border-color: #E75301;
    outline: none;
}

/* =====================================================
   BOOTSTRAP SELECT OVERRIDE FOR TIME DROPDOWNS
   Force native select display, hide Bootstrap Select elements
   ===================================================== */

/* Hide Bootstrap Select generated elements completely */
.pcr-time-field .bootstrap-select,
.pcr-time-field .btn-group.bootstrap-select,
.pcr-time-field>.btn-group,
.pcr-time-field>div.bootstrap-select {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

/* Force native select to be visible */
.pcr-time-field select.pcr-time-select,
.pcr-time-field select#pcr-start-time,
.pcr-time-field select#pcr-end-time {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    pointer-events: auto !important;
    z-index: 1 !important;
}

/* Remove bs-select-hidden class effects */
.pcr-time-field select.bs-select-hidden,
select.pcr-time-select.bs-select-hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
}

/* Restore proper native select styling */
.pcr-time-field select.pcr-time-select {
    padding: 14px 40px 14px 16px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    color: #374151 !important;
    background-color: #fff !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
}

/* Hover state */
.pcr-time-field select.pcr-time-select:hover {
    border-color: #d1d5db !important;
}

/* Focus state */
.pcr-time-field select.pcr-time-select:focus {
    border-color: #E75301 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(231, 83, 1, 0.1) !important;
}

/* Style the native dropdown options */
.pcr-time-field select.pcr-time-select option {
    padding: 10px 16px !important;
    color: #374151 !important;
    background-color: #fff !important;
}

.pcr-time-field select.pcr-time-select option:checked,
.pcr-time-field select.pcr-time-select option:hover {
    background-color: #f3f4f6 !important;
}

/* =====================================================
   PET SELECTION
   ===================================================== */
.pcr-pet-selection {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pcr-pet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.pcr-pet-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pcr-pet-icon {
    width: 22px;
    height: 22px;
}

.pcr-pet-label {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.pcr-pet-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.pcr-counter-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.pcr-counter-btn:hover:not(:disabled) {
    background: #f3f4f6;
    color: #E75301;
}

.pcr-counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pcr-counter-btn i {
    font-size: 12px;
}

.pcr-counter-input {
    width: 48px;
    height: 40px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    background: #fff;
    -moz-appearance: textfield;
}

.pcr-counter-input::-webkit-outer-spin-button,
.pcr-counter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* =====================================================
   FORM INPUTS
   ===================================================== */
.pcr-form-group {
    margin-bottom: 20px;
}

.pcr-form-group:last-child {
    margin-bottom: 0;
}

.pcr-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcr-input,
.pcr-select,
.pcr-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.pcr-input:focus,
.pcr-select:focus,
.pcr-textarea:focus {
    outline: none;
    border-color: #E75301;
}

.pcr-input::placeholder,
.pcr-textarea::placeholder {
    color: #9ca3af;
}

.pcr-textarea {
    resize: vertical;
    min-height: 100px;
}

.pcr-field-hint {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Checkbox styling */
.pcr-checkbox-group {
    margin-top: 24px;
}

.pcr-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.pcr-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #E75301;
}

.pcr-checkbox-text {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =====================================================
   FORM ACTIONS & MESSAGES
   ===================================================== */
.pcr-form-actions {
    text-align: center;
}

#pcr-form-messages {
    margin-bottom: 16px;
}

#pcr-form-messages:empty {
    display: none;
}

.pcr-message {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcr-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.pcr-message-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    text-align: left;
    margin-bottom: 32px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: block;
}

/* Error list with bullets */
.pcr-error-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
}

.pcr-error-list li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.pcr-error-list li:last-child {
    margin-bottom: 0;
}


.pcr-message.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* =====================================================
   PRICE ESTIMATE BREAKDOWN STYLES
   ===================================================== */
.pcr-price-estimate {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.pcr-estimate-breakdown {
    margin-bottom: 12px;
}

/* Line Items - Like Checkout Page */
#pcr-line-items {
    margin-bottom: 12px;
}

.pcr-line-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.pcr-line-item:last-child {
    border-bottom: none;
}

.pcr-line-item-info {
    flex: 1;
    text-align: left;
}

.pcr-line-item-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 2px;
}

.pcr-line-item-detail {
    font-size: 13px;
    color: #666;
}

.pcr-line-item-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
    margin-left: 12px;
}

/* Extended Care Line Item */
.pcr-line-item.pcr-line-item-extended {
    padding-top: 6px;
    padding-bottom: 10px;
}

.pcr-line-item-extended .pcr-line-item-name {
    font-weight: 500;
    color: #E75301;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcr-line-item-extended .pcr-line-item-detail {
    font-size: 12px;
    color: #888;
    /* padding-left: 16px; */
}

.pcr-line-item-extended .pcr-line-item-price {
    color: #E75301;
    font-size: 13px;
    font-weight: 500;
}

/* Totals Section */
.pcr-estimate-totals {
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 4px;
}

.pcr-estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.pcr-estimate-row .pcr-estimate-label {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcr-estimate-row .pcr-estimate-value {
    color: #333;
    font-weight: 500;
}

.pcr-estimate-row.pcr-estimate-subtotal {
    color: #666;
}

.pcr-estimate-row.pcr-estimate-extended-total {
    color: #E75301;
}

.pcr-estimate-row.pcr-estimate-extended-total .pcr-estimate-label,
.pcr-estimate-row.pcr-estimate-extended-total .pcr-estimate-value {
    color: #E75301;
}

.pcr-estimate-row.pcr-estimate-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 6px;
    font-size: 15px;
}

.pcr-estimate-row.pcr-estimate-total .pcr-estimate-label {
    color: #333;
    font-weight: 600;
}

.pcr-estimate-amount {
    font-weight: 700;
    color: #E75301;
    font-size: 16px;
}

.pcr-extended-info {
    cursor: pointer;
    color: #E75301;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.pcr-extended-info:hover {
    opacity: 0.8;
}

.pcr-estimate-note {
    margin: 0;
    font-size: 12px;
    color: #888;
    text-align: center;
    font-weight: 700;
}

/* =====================================================
   EXTENDED CARE INFO MODAL
   ===================================================== */
.pcr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pcr-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pcrModalSlideIn 0.3s ease;
}

@keyframes pcrModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pcr-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcr-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcr-modal-close:hover {
    opacity: 0.7;
}

.pcr-modal-body {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.pcr-modal-body p {
    margin: 0 0 15px 0;
}

.pcr-extended-info-box {
    background: #FFF7ED;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.pcr-info-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pcr-extended-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.pcr-extended-info-box li {
    margin-bottom: 8px;
}

.pcr-extended-info-box li:last-child {
    margin-bottom: 0;
}

.pcr-info-example {
    font-size: 14px;
    color: #888;
    margin-bottom: 0 !important;
}

.pcr-modal-btn {
    width: 100%;
    margin-top: 16px;
    background: #E75301;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pcr-modal-btn:hover {
    background: #d14901;
}

.pcr-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 16px 32px;
    background: #E75301;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pcr-submit-btn:hover:not(:disabled) {
    background: #d14901;
    transform: translateY(-1px);
}

.pcr-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pcr-submit-note {
    margin: 16px 0 0 0;
    font-size: 13px;
    color: #6b7280;
}

.pcr-submit-note a {
    color: #E75301;
    text-decoration: none;
}

.pcr-submit-note a:hover {
    text-decoration: underline;
}

/* =====================================================
   SUCCESS STATE
   ===================================================== */
.pcr-success-state {
    text-align: center;
    padding: 60px 40px;
}

.pcr-success-icon {
    margin-bottom: 24px;
}

.pcr-success-icon i {
    font-size: 64px;
    color: #16a34a;
}

.pcr-success-state h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.pcr-success-state p {
    margin: 0 0 32px 0;
    font-size: 16px;
    color: #666;
}

.pcr-success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pcr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pcr-btn-primary {
    background: #E75301;
    color: #fff;
}

.pcr-btn-primary:hover {
    background: #d14901;
    color: #fff;
    text-decoration: none;
}

.pcr-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.pcr-btn-secondary:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
}

/* =====================================================
   TRUST BADGES
   ===================================================== */
.pcr-trust-badges-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    margin-top: 24px;
}

.pcr-trust-badges-footer .pcr-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}

.pcr-trust-badges-footer .pcr-trust-item i {
    color: #E75301;
    font-size: 16px;
}

/* =====================================================
   DATERANGEPICKER CUSTOMIZATION
   ===================================================== */
.daterangepicker {
    font-family: inherit;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-size: 13px;
    padding: 8px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #E75301;
}

.daterangepicker td.in-range {
    background-color: #fff2eb;
    color: #1a1a1a;
}

.daterangepicker .drp-buttons .applyBtn {
    background-color: #E75301;
    border-color: #E75301;
}

.daterangepicker .drp-buttons .applyBtn:hover {
    background-color: #d14901;
    border-color: #d14901;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
    .pcr-contact-page-wrapper {
        padding: 16px;
        max-width: 100%;
    }

    .pcr-form-container {
        padding: 20px;
        border-radius: 12px;
    }

    .pcr-provider-details h1 {
        font-size: 20px;
    }

    .pcr-provider-avatar img {
        width: 56px;
        height: 56px;
    }

    /* Time row stacks on mobile */
    .pcr-time-row {
        flex-direction: column;
        gap: 16px;
    }

    .pcr-time-field {
        width: 100%;
    }

    .pcr-pet-row {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .pcr-pet-counter {
        align-self: flex-end;
    }

    .pcr-trust-badges-footer {
        flex-direction: row;
        align-items: center;
        gap: 5px;
        padding: 5px;
    }

    .pcr-success-actions {
        flex-direction: column;
    }

    .pcr-btn {
        width: 100%;
    }

    /* Service group adjustments for mobile */
    .pcr-group-header {
        padding: 12px 14px;
    }

    .pcr-group-title,
    .pcr-group-name {
        font-size: 14px;
    }

    .pcr-service-item-content,
    .pcr-service-content {
        padding: 14px;
    }

    .pcr-service-name {
        font-size: 13px;
    }

    .pcr-service-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pcr-section-title {
        font-size: 16px;
    }

    .pcr-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .pcr-submit-btn {
        width: 100%;
    }

    .pcr-group-icon {
        width: 20px;
        height: 20px;
    }

    .pcr-service-radio,
    .pcr-service-check {
        width: 20px;
        height: 20px;
    }
}

/* =====================================================
   SERVICE PRICE DISPLAY
   ===================================================== */
.pcr-service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
}

.pcr-service-price .pcr-price-amount {
    font-size: 15px;
    font-weight: 700;
    color: #E75301;
    white-space: nowrap;
}

.pcr-service-price .pcr-price-rate {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .pcr-service-price .pcr-price-amount {
        font-size: 14px;
    }

    .pcr-service-price .pcr-price-rate {
        font-size: 10px;
    }
}