.wcfm-lcp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcfm-lcp-modal-content {
    background: white;
    width: 90%;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.modal-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wcfm-lcp-skip {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.wcfm-lcp-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.wcfm-lcp-close:hover,
.wcfm-lcp-skip:hover {
    opacity: 0.8;
}

.form-group {
    padding: 0 20px;
    margin: 20px 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.phone-field {
    display: flex;
    align-items: center;
}

.phone-field span {
    background: #f1f1f1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.phone-field input {
    border-radius: 0 6px 6px 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.submit-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.success-tick {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
    animation: tickPop 0.6s ease-out;
}

@keyframes tickPop {
    0%   { transform: scale(0); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#wcfm-lcp-success h3 {
    color: #28a745;
    margin: 10px 0;
}

.wcfm-lcp-close-success {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}