/* Joniec Smart Popup - Frontend Styles */

/* ===== Reset for popup scope ===== */
.jsp-popup *, .jsp-trigger *, .jsp-overlay * {
    margin: 0; padding: 0; box-sizing: border-box;
}

@import url('https://joniecplumbingcomabb1a1.zapwp.com/q:u/r:0/wp:0/w:1/u:https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ===== Overlay ===== */
.jsp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}
.jsp-overlay.active { display: block; opacity: 1; }

/* ===== Trigger Button ===== */
.jsp-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99997;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 16px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(26,115,232,0.45);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jsp-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26,115,232,0.55);
}
.jsp-pulse-dot {
    width: 10px; height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: jspPulse 2s infinite;
}
@keyframes jspPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

/* ===== Main Popup ===== */
.jsp-popup {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 99999;
    width: 420px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    display: none;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    animation: jspSlideUp 0.35s ease;
}
.jsp-popup.active { display: flex; }

@keyframes jspSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Close Button ===== */
.jsp-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: #1a73e8;
    border: 2px solid #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(26,115,232,0.4);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.jsp-close:hover { background: #0d47a1; transform: scale(1.1); }

/* ===== Back Button ===== */
.jsp-back {
    position: absolute;
    top: 12px;
    left: 14px;
    background: #1a73e8;
    border: 2px solid #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(26,115,232,0.4);
    font-family: 'Poppins', sans-serif;
}
.jsp-back:hover { background: #0d47a1; transform: scale(1.1); }

/* ===== Steps Container ===== */
.jsp-steps {
    overflow-y: auto;
    flex: 1;
}
.jsp-step {
    display: none;
    padding: 0;
}
.jsp-step.active { display: block; }

/* ===== Welcome Screen ===== */
.jsp-welcome {
    text-align: center;
    padding: 36px 28px 28px;
}
.jsp-welcome .jsp-logo {
    width: 306px;
    margin: 0 auto 12px;
    display: block;
}
.jsp-welcome .jsp-wave { font-size: 40px; margin-bottom: 8px; }
.jsp-welcome h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.jsp-welcome p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

/* ===== Welcome Buttons ===== */
.jsp-welcome-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.jsp-welcome-btn {
    border: 2px solid #e8edf2;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}
.jsp-welcome-btn:hover {
    transform: translateY(-1px);
}
.jsp-welcome-btn.new-btn {
    border-color: #f57c00;
    border-left: 4px solid #f57c00;
}
.jsp-welcome-btn.new-btn:hover {
    background: #fff8f0;
}
.jsp-welcome-btn.ret-btn {
    border-color: #1a73e8;
    border-left: 4px solid #1a73e8;
}
.jsp-welcome-btn.ret-btn:hover {
    background: #f0f6ff;
}
.jsp-welcome-btn .btn-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}
.jsp-welcome-btn .btn-sub {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    display: block;
}

/* ===== Emergency Button ===== */
.jsp-emergency-btn {
    background: linear-gradient(135deg, #e53935, #c62828);
    border: none;
    color: #fff !important;
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(229,57,53,0.3);
    animation: jspEmergencyPulse 1.2s infinite;
    width: 100%;
}
.jsp-emergency-btn * {
    font-weight: 800 !important;
    color: #fff !important;
}
.jsp-emergency-btn:hover {
    transform: translateY(-1px);
    color: #fff !important;
    font-weight: 800 !important;
    text-decoration: none;
}
@keyframes jspEmergencyPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(229,57,53,0.3); transform: scale(1); }
    50% { box-shadow: 0 4px 25px rgba(229,57,53,0.6), 0 0 50px rgba(229,57,53,0.25); transform: scale(1.03); }
}
.jsp-emergency-sm {
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    margin-top: 12px;
}

/* ===== Header Bars ===== */
.jsp-header {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 62px 24px 18px;
    color: #fff;
    text-align: center;
    position: relative;
}
.jsp-header.orange {
    background: linear-gradient(135deg, #f57c00, #e65100);
}
.jsp-header h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
}
.jsp-header p {
    font-size: 13px;
    opacity: 0.85;
}
.jsp-header .vip-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ===== Logo Header (services screens) ===== */
.jsp-logo-header {
    text-align: center;
    padding: 20px 28px 0;
}
.jsp-logo-header img {
    width: 272px;
    display: inline-block;
}
.jsp-offer-text {
    text-align: center;
    padding: 12px 24px 16px;
}
.jsp-offer-text h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}
.jsp-offer-text .offer-amount {
    color: #f57c00;
    font-style: italic;
    font-size: 18px;
}
.jsp-offer-text p {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}
.jsp-offer-text .issue-prompt {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 10px;
}

/* ===== VIP Welcome ===== */
.jsp-vip-welcome {
    text-align: center;
    padding: 28px 28px 16px;
}
.jsp-vip-welcome .jsp-logo { width: 272px; margin: 0 auto 12px; display: block; }
.jsp-vip-welcome .jsp-wave { font-size: 40px; margin-bottom: 8px; }
.jsp-vip-welcome h2 { font-size: 20px; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; text-transform: uppercase; }
.jsp-vip-badge-lg {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.jsp-callback-box {
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    border: 2px solid #1a73e8;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    margin: 16px 0;
}
.jsp-callback-box .time-big { font-size: 36px; font-weight: 900; color: #0d47a1; line-height: 1; }
.jsp-callback-box .time-label { font-size: 13px; font-weight: 600; color: #1a73e8; margin-top: 4px; }

/* ===== Service & Urgency Buttons ===== */
.jsp-body { padding: 20px 22px 24px; }
.jsp-grid { display: flex; flex-direction: column; gap: 10px; }

.jsp-service-btn {
    border: 2px solid #e8edf2;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
    width: 100%;
}
.jsp-service-btn:hover {
    border-color: #1a73e8;
    background: #f0f6ff;
    transform: translateY(-1px);
}
.jsp-other-btn {
    background: linear-gradient(135deg, #f57c00, #e65100);
    border: none;
    color: #fff !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
}
.jsp-other-btn * {
    font-weight: 800 !important;
    color: #fff !important;
}
.jsp-other-btn:hover {
    background: linear-gradient(135deg, #e65100, #d84315);
    color: #fff !important;
}
.jsp-other-btn.blue {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border: none;
    color: #fff !important;
    font-weight: 800;
}
.jsp-other-btn.blue:hover {
    background: linear-gradient(135deg, #0d47a1, #0a3a8a);
    color: #fff !important;
}
.jsp-pm-btn {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    transition: all 0.2s;
}
.jsp-pm-btn.orange {
    background: linear-gradient(135deg, #f57c00, #e65100);
}

.jsp-urgency-btn {
    border: 2px solid rgba(255,255,255,0.15) !important;
    background: linear-gradient(135deg, #1e3c6e, #162d54) !important;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: #fff !important;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.jsp-urgency-btn:hover {
    border-color: rgba(255,255,255,0.35) !important;
    background: linear-gradient(135deg, #2a4f8a, #1e3c6e) !important;
    transform: translateY(-1px);
}
.jsp-urgency-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    display: block;
    letter-spacing: 0.2px;
}
.jsp-urgency-sub {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.75) !important;
    display: block;
    line-height: 1.4;
}

/* ===== Browse Issues ===== */
.jsp-browse-search {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 2px solid #e8edf2;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 14px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") 12px center no-repeat;
}
.jsp-browse-search:focus { border-color: #1a73e8; }
.jsp-browse-list { max-height: 340px; overflow-y: auto; }
.jsp-browse-list::-webkit-scrollbar { width: 5px; }
.jsp-browse-list::-webkit-scrollbar-thumb { background: #c0c0c0; border-radius: 10px; }
.jsp-browse-cat-title {
    font-size: 11px; font-weight: 700; color: #1a73e8; text-transform: uppercase;
    letter-spacing: 0.8px; padding: 6px 0; border-bottom: 1px solid #eee; margin-bottom: 6px;
}
.jsp-browse-item {
    padding: 10px 14px; cursor: pointer; font-size: 13px; font-weight: 500;
    color: #333; border-radius: 8px; transition: all 0.15s ease;
}
.jsp-browse-item:hover { background: #f0f6ff; color: #1a73e8; }
.jsp-no-results { text-align: center; padding: 20px; color: #999; font-size: 13px; display: none; }

/* ===== Other/Describe Choice ===== */
.jsp-choice-section { padding: 20px 22px 24px; text-align: center; }
.jsp-choice-section h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
.jsp-choice-btn {
    border: 2px solid #e8edf2; background: #fff; border-radius: 12px;
    padding: 16px 18px; cursor: pointer; text-align: center;
    transition: all 0.2s ease; margin-bottom: 10px; width: 100%;
    font-family: 'Poppins', sans-serif;
}
.jsp-choice-btn:hover { border-color: #1a73e8; background: #f0f6ff; transform: translateY(-1px); }
.jsp-choice-btn .choice-title { font-size: 14px; font-weight: 700; color: #1a73e8; display: block; }
.jsp-choice-btn .choice-sub { font-size: 12px; color: #888; margin-top: 3px; display: block; }

/* ===== Form ===== */
.jsp-form-section { padding: 20px 24px 28px; }
.jsp-form-summary {
    background: #f0f6ff; border-radius: 10px; padding: 12px 16px;
    margin-bottom: 18px; font-size: 13px; color: #444;
}
.jsp-form-summary.orange { background: #fff8f0; }
.jsp-form-summary .label {
    font-weight: 700; color: #1a73e8; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.jsp-form-summary.orange .label { color: #f57c00; }
.jsp-form-summary .value { font-weight: 600; color: #1a1a2e; }

.jsp-form-group { margin-bottom: 14px; }
.jsp-form-group label {
    display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}
.jsp-form-group input,
.jsp-form-group textarea {
    width: 100%; padding: 12px 14px; border: 2px solid #e8edf2; border-radius: 10px;
    font-family: 'Poppins', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
}
.jsp-form-group input:focus,
.jsp-form-group textarea:focus { border-color: #1a73e8; }
.jsp-form-group textarea { resize: vertical; min-height: 70px; }

.jsp-photo-area {
    border: 2px dashed #d0d5dd; border-radius: 10px; padding: 16px;
    text-align: center; cursor: pointer; transition: all 0.2s; background: #fafbfc;
}
.jsp-photo-area:hover { border-color: #1a73e8; background: #f0f6ff; }
.jsp-photo-area .upload-icon { font-size: 24px; margin-bottom: 4px; }
.jsp-photo-area .upload-text { font-size: 13px; font-weight: 600; color: #1a73e8; }
.jsp-photo-area .upload-hint { font-size: 11px; color: #999; margin-top: 2px; }

/* Photo preview grid */
.jsp-photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.jsp-photo-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.jsp-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.jsp-photo-thumb .jsp-photo-remove {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #e53935;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.jsp-photo-thumb .jsp-photo-remove:hover {
    background: #c62828;
    transform: scale(1.1);
}
.jsp-photo-thumb .jsp-photo-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 9px;
    padding: 2px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Poppins', sans-serif;
}
.jsp-photo-count {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    font-weight: 600;
}
.jsp-photo-add-more {
    width: 80px;
    height: 80px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: #999;
    transition: all 0.2s;
}
.jsp-photo-add-more:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    background: #f0f6ff;
}

.jsp-submit-btn {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff; border: none; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.jsp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,115,232,0.4); }
.jsp-submit-btn.orange { background: linear-gradient(135deg, #f57c00, #e65100); }
.jsp-submit-btn.orange:hover { box-shadow: 0 6px 20px rgba(245,124,0,0.4); }

/* ===== Trust Badges ===== */
.jsp-trust {
    display: flex; justify-content: center; gap: 20px;
    padding: 16px 20px; border-top: 1px solid #eee; background: #fafbfc;
}
.jsp-trust-item { text-align: center; font-size: 11px; color: #666; font-weight: 600; }
.jsp-trust-item .icon { font-size: 16px; display: block; margin-bottom: 2px; }

/* ===== Confirmation ===== */
.jsp-confirmation { text-align: center; padding: 40px 28px; }
.jsp-confirmation .check-circle {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 28px; color: #fff;
}
.jsp-confirmation .check-circle.green { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.jsp-confirmation .check-circle.orange { background: linear-gradient(135deg, #f57c00, #e65100); }
.jsp-confirmation .check-circle.blue { background: linear-gradient(135deg, #1a73e8, #0d47a1); }
.jsp-confirmation h3 { font-size: 20px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.jsp-confirmation p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== After Hours Banner ===== */
.jsp-after-hours-banner {
    background: linear-gradient(135deg, #f57c00, #e65100);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    margin: 12px 0;
    animation: jspAfterHoursPulse 1.5s infinite;
}
.jsp-after-hours-banner .ah-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}
.jsp-after-hours-banner .ah-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.jsp-after-hours-banner .ah-message {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}
@keyframes jspAfterHoursPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(245,124,0,0.35); }
    50%       { box-shadow: 0 4px 28px rgba(245,124,0,0.65), 0 0 40px rgba(245,124,0,0.18); }
}

/* Inside a coloured header — semi-transparent white so it sits within the gradient */
.jsp-header .jsp-after-hours-banner {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    animation: jspAfterHoursPulseLight 1.5s infinite;
}
.jsp-header .jsp-after-hours-banner .ah-label  { color: rgba(255,255,255,0.8); }
.jsp-header .jsp-after-hours-banner .ah-message { color: #fff; }
@keyframes jspAfterHoursPulseLight {
    0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
    50%       { box-shadow: 0 2px 18px rgba(0,0,0,0.28); }
}

/* ===== Responsive ===== */
@media (max-width: 480px) {

    /* --- Popup container — bottom sheet --- */
    .jsp-popup {
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-height: 82vh;
        border-radius: 24px 24px 0 0;
        animation: jspSlideUpMobile 0.32s ease;
    }
    @keyframes jspSlideUpMobile {
        from { transform: translateY(55%); opacity: 0; }
        to   { transform: translateY(0);   opacity: 1; }
    }

    /* --- Trigger button — lifted above where the sheet anchors --- */
    .jsp-trigger {
        bottom: 20px; right: 16px;
        padding: 12px 18px; font-size: 13px; gap: 8px;
    }

    /* --- Welcome screen --- */
    .jsp-welcome { padding: 22px 18px 16px; }
    .jsp-welcome .jsp-logo { width: 200px; margin-bottom: 8px; }
    .jsp-welcome .jsp-wave { font-size: 30px; margin-bottom: 5px; }
    .jsp-welcome h2 { font-size: 16px; margin-bottom: 4px; }
    .jsp-welcome p { font-size: 12px; margin-bottom: 16px; }
    .jsp-welcome-options { gap: 9px; }
    .jsp-welcome-btn { padding: 12px 14px; border-radius: 12px; }
    .jsp-welcome-btn .btn-title { font-size: 13px; }
    .jsp-welcome-btn .btn-sub { font-size: 11px; }

    /* --- Emergency button --- */
    .jsp-emergency-btn { padding: 13px 16px; font-size: 13px; }
    .jsp-emergency-sm { padding: 11px 14px; font-size: 13px; margin-top: 10px; }

    /* --- Header bars --- */
    .jsp-header { padding: 50px 18px 13px; }
    .jsp-header h3 { font-size: 15px; }
    .jsp-header p { font-size: 12px; }
    .jsp-header .vip-badge { font-size: 10px; padding: 3px 10px; margin-bottom: 6px; }

    /* --- Logo header (services/urgency screens) --- */
    .jsp-logo-header { padding: 12px 20px 0; }
    .jsp-logo-header img { width: 178px; }
    .jsp-offer-text { padding: 8px 18px 12px; }
    .jsp-offer-text h3 { font-size: 13px; }
    .jsp-offer-text .offer-amount { font-size: 15px; }
    .jsp-offer-text p { font-size: 12px; margin-top: 4px; }
    .jsp-offer-text .issue-prompt { font-size: 13px; margin-top: 8px; }

    /* --- VIP welcome screen --- */
    .jsp-vip-welcome { padding: 18px 18px 12px; }
    .jsp-vip-welcome .jsp-logo { width: 178px; margin-bottom: 8px; }
    .jsp-vip-welcome .jsp-wave { font-size: 30px; margin-bottom: 6px; }
    .jsp-vip-welcome h2 { font-size: 16px; margin-bottom: 4px; }
    .jsp-callback-box { padding: 14px; margin: 12px 0; }
    .jsp-callback-box .time-big { font-size: 28px; }
    .jsp-callback-box .time-label { font-size: 12px; }

    /* --- Service & urgency buttons --- */
    .jsp-body { padding: 13px 15px 16px; }
    .jsp-grid { gap: 8px; }
    .jsp-service-btn { padding: 11px 14px; font-size: 13px; border-radius: 10px; }
    .jsp-urgency-btn { padding: 12px 15px; gap: 3px; }
    .jsp-urgency-title { font-size: 13px; }
    .jsp-urgency-sub { font-size: 11px; }
    .jsp-pm-btn { padding: 12px 14px; font-size: 13px; }

    /* --- Browse issues --- */
    .jsp-browse-search { padding: 10px 12px 10px 34px; font-size: 13px; margin-bottom: 10px; }
    .jsp-browse-list { max-height: 260px; }
    .jsp-browse-item { padding: 9px 12px; font-size: 12px; }

    /* --- Other / describe choice --- */
    .jsp-choice-section { padding: 14px 16px 18px; }
    .jsp-choice-btn { padding: 13px 14px; margin-bottom: 8px; }
    .jsp-choice-btn .choice-title { font-size: 13px; }
    .jsp-choice-btn .choice-sub { font-size: 11px; }

    /* --- Contact form --- */
    .jsp-form-section { padding: 13px 15px 18px; }
    .jsp-form-group { margin-bottom: 11px; }
    .jsp-form-group label { font-size: 11px; margin-bottom: 4px; }
    .jsp-form-group input,
    .jsp-form-group textarea { padding: 10px 12px; font-size: 13px; border-radius: 9px; }
    .jsp-form-group textarea { min-height: 60px; }
    .jsp-form-summary { padding: 10px 13px; font-size: 12px; margin-bottom: 14px; }
    .jsp-photo-area { padding: 12px; }
    .jsp-photo-area .upload-icon { font-size: 20px; }
    .jsp-photo-area .upload-text { font-size: 12px; }
    .jsp-photo-thumb { width: 68px; height: 68px; }
    .jsp-submit-btn { padding: 13px; font-size: 14px; border-radius: 10px; margin-top: 6px; }

    /* --- Trust badges --- */
    .jsp-trust { gap: 10px; padding: 11px 14px; }
    .jsp-trust-item { font-size: 10px; }
    .jsp-trust-item .icon { font-size: 14px; margin-bottom: 1px; }

    /* --- After hours banner --- */
    .jsp-after-hours-banner { padding: 13px 16px; margin: 10px 0; border-radius: 12px; }
    .jsp-after-hours-banner .ah-icon { font-size: 20px; }
    .jsp-after-hours-banner .ah-message { font-size: 14px; }

    /* --- Confirmation screen --- */
    .jsp-confirmation { padding: 26px 20px; }
    .jsp-confirmation .check-circle {
        width: 52px; height: 52px; font-size: 22px; margin-bottom: 12px;
    }
    .jsp-confirmation h3 { font-size: 17px; margin-bottom: 6px; }
    .jsp-confirmation p { font-size: 13px; }

}
