/* Main Popup Styles */
#epp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

#epp-popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    z-index: 9999;
}

.epp-popup-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.epp-close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    z-index: 10;
}

.epp-close-popup:hover {
    color: #ff0000;
}

.epp-popup-inner {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.epp-popup-inner h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 28px;
    text-align: center;
}

.epp-popup-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.epp-privacy-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin: 20px 0 0 0;
}

/* CF7 Form Styling */
.wpcf7-form {
    margin-top: 20px;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.wpcf7-form input:focus {
    outline: none;
    border-color: #007cba;
}

.wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #005a87;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #epp-popup-container {
        width: 95%;
        max-width: 400px;
    }
    
    .epp-popup-inner {
        padding: 30px 25px;
    }
    
    .epp-popup-inner h2 {
        font-size: 24px;
    }
    
    .epp-popup-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .epp-popup-inner {
        padding: 25px 20px;
    }
    
    .epp-popup-inner h2 {
        font-size: 22px;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"] {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .wpcf7-form .wpcf7-submit {
        padding: 12px;
        font-size: 15px;
    }
}