/*process server*/

body.single-process_server {
    overflow-x: unset;
}

.col_33.text_small {
    position: sticky;
    top: 0;
}

.provider-banner {
    padding-top: 3.7rem;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
}

.server-details-page .profile-wrapper {
    flex-wrap: nowrap;
    flex-direction: row;
    padding-right: 45px;
}

.left-content {
    flex: 1;
}

.process-server-wrapper {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 20px; */
    flex-wrap: wrap;
    gap: 16px;
    background-color: #fff;
    border-bottom: none;

}

.card-header h2 {
    margin-bottom: 0px;
}

.title-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.verified-badge::before {
    content: "✓";
    font-weight: bold;
    font-size: 16px;
}

.quote-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.quote-button:hover {
    background: #2563eb;
}

.quote-button::before {
    content: "📋";
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
}

.location::before {
    content: "📍";
    font-size: 18px;
    display: none;
}

.description {
    color: #9ca3af;
    font-size: 16px;
    font-style: italic;
}

@media (max-width: 640px) {
    .card {
        padding: 24px;
    }

    .company-name {
        font-size: 24px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-button {
        width: 100%;
        justify-content: center;
    }
}



.profile-wrapper .company-logo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
    flex-shrink: 0;
}

.coverage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.coverage-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-icon {
    display: flex;
    align-items: center;
}

.coverage-text {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.coverage-zip {
    background: #eef2ff;
    color: #1d4ed8;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.primary-badge {
    background: #e5f0ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.profile_services ul li::before {
    display: none;
}



/* Form wrapper */
.form {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
}

/* Input & textarea fields */
#custom-contact-form input[type="text"],
#custom-contact-form input[type="email"],
#custom-contact-form input[type="tel"],
#custom-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #bfbfbf;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

/* Placeholder styling */
#custom-contact-form input::placeholder,
#custom-contact-form textarea::placeholder {
    color: #777;
    font-style: italic;
}

/* Focus state */
#custom-contact-form input:focus,
#custom-contact-form textarea:focus {
    border-color: #2e76ea;
}

/* Textarea */
#custom-contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* Submit button */
#custom-contact-form .btn-danger {
    width: 100%;
    background-color: #2e76ea;
    border: none;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

#custom-contact-form .btn-danger:hover {
    background-color: #2e76ea;
}

/* Invalid feedback */
#custom-contact-form .invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-bottom: 8px;
    display: none;
}

/* Error input state */
#custom-contact-form .is-invalid {
    border-color: #dc3545;
}

/* Success / error message */
#custom-contact-form .form-message {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

#custom-contact-form .form-message.success {
    color: #28a745;
}

#custom-contact-form .form-message.error {
    color: #dc3545;
}

/* Loader */
#custom-contact-form .form-loader {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
    color: #555;
}

/* Sidebar Card */
.sidebar-card {
    /* border: 1px solid #dcdcdc; */
    /* padding: 12px; */
    /* background: #fff; */
    /* text-align: center; */
    /* margin-bottom: 16px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Image */
.sidebar-card .server-thumb {
    width: 100%;
    max-width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    display: block;
}

/* Title */
.sidebar-card .server-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b3aa4;
    margin-bottom: 6px;
}

/* Phone */
.sidebar-card .server-phone {
    font-size: 18px;
    font-weight: 700;
    color: #0047ff;
    margin-bottom: 6px;
}

.comp-btn-wrapper {
    text-align: center;
}

.comp-btn-wrapper a {
    padding: 5px 8px;
}

/* Description */
.sidebar-card .server-desc {
    font-size: 13px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Buttons */
.sidebar-card .btn-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.sidebar-card .btn-wrapper a {
    flex: 1;
    font-size: 13px;
    padding: 6px 0;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
}

/* Button styles */
.btn-outline {
    border: 1px solid #1e40af;
    color: #1e40af;
    background: #fff;
}

.btn-outline:hover {
    background: #1e40af;
    color: #fff;
}

.btn-danger {
    background: #e11d48;
    color: #fff;
    border: 1px solid #e11d48;
}

.btn-danger:hover {
    background: #be123c;
}


/*single city */
.action-buttons button {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 160px !important;
}


.zip-wrapper {
    max-height: 320px;
    /* adjust height as needed */
    overflow-y: auto;
    padding-right: 8px;
    /* prevents text hiding under scrollbar */
}

/* Optional: nicer list spacing */
.zip-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zip-wrapper li {
    padding: 4px 0;
    font-size: 14px;
}

/* Optional: modern scrollbar (Chrome / Edge / Safari) */
.zip-wrapper::-webkit-scrollbar {
    width: 6px;
}

.zip-wrapper::-webkit-scrollbar-thumb {
    background-color: #cfcfcf;
    border-radius: 6px;
}

.zip-wrapper::-webkit-scrollbar-track {
    background: transparent;
}



/* end process */

/* join page */
.account-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.account-section .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.account-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.account-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 50px;
}

/* Row & Columns */
.account-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.account-row .col {
    flex: 1;
    max-width: 420px;
}

/* Card */
.account-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    height: 336px;
}

/* Icons */
.account-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.account-card .icon.blue {
    background: #e0edff;
    color: #2563eb;
}

.account-card .icon.green {
    background: #dcfce7;
    color: #16a34a;
}

/* Text */
.account-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.account-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-outline {
    border: 1.5px solid #e5e7eb;
    color: #0f172a;
    background: #ffffff;
}

.btn-outline:hover {
    background: #f8fafc;
}

/* Login text */
.login-text {
    margin-top: 40px;
    font-size: 15px;
    color: #475569;
}

.login-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.login-text a:hover {
    text-decoration: underline;
}


/* end of join page */