.csl-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .csl-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .csl-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.csl-service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.csl-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #000;
}

.csl-service-icon {
    margin-bottom: 15px;
}

.csl-service-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.csl-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #111;
}

.csl-service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

@media (max-width: 767px) {
    .csl-service-card {
        padding: 15px 10px;
    }

    .csl-service-card h3 {
        font-size: 14px;
    }

    .csl-service-card p {
        font-size: 12px;
    }

    .csl-service-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Popup */
.csl-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 999999;
    display: none;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.csl-popup-box {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    margin: 60px auto;
    border-radius: 10px;
    padding: 40px 30px 30px;
    position: relative;
    box-sizing: border-box;
}

.csl-popup-close {
    position: absolute !important;
    top: 15px !important;
    right: 18px !important;
    left: auto !important;
    width: 34px !important;
    height: 34px !important;
    background: transparent !important;
    border: none !important;
    color: #111111 !important;
    font-size: 26px !important;
    line-height: 34px !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10 !important;
    text-align: center !important;
    box-shadow: none !important;
}

.csl-popup-close:hover {
    background: transparent !important;
    color: #C62127 !important;
}

.csl-popup-box h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    color: #222222;
    padding-right: 35px;
}

.csl-selected-service {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111111;
    line-height: 1.3;
}

.csl-selected-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 22px;
}

.csl-form-group {
    margin-bottom: 18px;
}

.csl-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.csl-form-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 0 16px;
    font-size: 15px;
    box-sizing: border-box;
    background: #ffffff;
    outline: none;
}

.csl-form-group input:focus {
    border-color: #C62127;
}

.csl-submit-btn,
#cslLeadForm .csl-submit-btn,
button.csl-submit-btn {
    width: 100% !important;
    height: 50px !important;
    border: none !important;
    background-color: #BE1E2D !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    box-shadow: none !important;
    outline: none !important;
}

.csl-submit-btn:hover,
#cslLeadForm .csl-submit-btn:hover,
button.csl-submit-btn:hover {
    background-color: #a8181d !important;
    color: #ffffff !important;
}

.csl-submit-btn:disabled,
#cslLeadForm .csl-submit-btn:disabled,
button.csl-submit-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.csl-form-message {
    margin-top: 15px;
}

.csl-success {
    background: #e8f7e8;
    color: #187c18;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.csl-error {
    background: #ffeaea;
    color: #c40000;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .csl-popup-box {
        padding: 38px 20px 25px;
        margin: 40px auto;
    }

    .csl-popup-box h3 {
        font-size: 20px;
    }

    .csl-selected-service {
        font-size: 18px;
    }
}
/* Book A Service Form */
.csl-booking-form {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    box-sizing: border-box;
}

.csl-booking-row {
    margin-bottom: 16px;
}

.csl-booking-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.csl-booking-form input,
.csl-booking-form textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: #222;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
}

.csl-booking-form input {
    height: 50px;
}

.csl-booking-form textarea {
    height: 175px;
    resize: none;
}

.csl-desc-wrap {
    position: relative;
}

.csl-char-count {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.csl-booking-upload {
    background: #ffffff;
    border-radius: 10px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.csl-booking-upload label {
    cursor: pointer;
    font-size: 13px;
    color: #222;
}

.csl-booking-upload strong {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
}

.csl-booking-upload span {
    font-size: 12px;
    color: #555;
}

.csl-booking-submit {
    width: 180px;
    height: 48px;
    background: #C62127 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.csl-booking-submit:hover {
    background: #a8181d !important;
}

@media (max-width: 767px) {
    .csl-booking-3col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .csl-booking-form {
        padding: 12px;
    }

    .csl-char-count {
        position: static;
        display: block;
        text-align: right;
        margin-top: 6px;
    }

    .csl-booking-submit {
        width: 100%;
    }
}