 /* Overlay Background */
        .exit-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .exit-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Popup Container */
        .exit-popup-container {
            width: 35%;
            max-width: 800px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.5s ease-out;
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
        
        /* Close Button */
        .btn-close-to {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(114, 169, 78, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #72a94e;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .btn-close-to:hover {
            background: #72a94e;
            color: white;
            transform: rotate(90deg);
        }
        
        /* Form Section */
        .exit-form-section {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .exit-form-title {
            font-size: 26px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .exit-form-subtitle {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.5;
        }
        
        .exit-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .exit-form-group {
            width: 100%;
        }
        
        .exit-form-label {
            display: block;
            margin-bottom: 8px;
            color: #374151;
            font-weight: 600;
            font-size: 14px;
        }
        
        .exit-form-label i {
            color: #72a94e;
            margin-right: 8px;
            font-size: 16px;
        }
        
        .exit-form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background: #f9fafb;
            color: #1f2937;
            font-family: 'Poppins', sans-serif;
        }
        
        .exit-form-input:focus {
            outline: none;
            border-color: #72a94e;
            background: white;
            box-shadow: 0 0 0 3px rgba(114, 169, 78, 0.1);
        }
        
        /* Input Validation States */
        .exit-form-input.valid {
            border-color: #10b981;
            background-color: rgba(16, 185, 129, 0.05);
        }
        
        .exit-form-input.invalid {
            border-color: #ef4444;
            background-color: rgba(239, 68, 68, 0.05);
        }
        
        /* Validation Error Messages */
        .exit-validation-error {
            color: #ef4444;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            font-weight: 500;
        }
        
        .exit-validation-error.show {
            display: block;
        }
        
        /* Submit Button */
        .get-action-btn {
            background: linear-gradient(135deg, #72a94e 0%, #5a8a3c 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(114, 169, 78, 0.3);
            font-family: 'Poppins', sans-serif;
        }
        
        .get-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(114, 169, 78, 0.4);
        }
        
        .get-action-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Messages */
        .exit-message {
            padding: 15px 20px;
            border-radius: 10px;
            margin-top: 20px;
            font-weight: 500;
            display: none;
            text-align: center;
        }
        
        .exit-success-message {
            background-color: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }
        
        .exit-error-message {
            background-color: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }
        
        .exit-duplicate-warning {
            background-color: #fef3c7;
            color: #92400e;
            border: 1px solid #fde68a;
            padding: 15px 20px;
            border-radius: 10px;
            margin-top: 20px;
            font-weight: 500;
            display: none;
            text-align: center;
        }
        
        /* Terms & Conditions Text */
        .exit-terms-text {
            font-size: 12px;
            color: #6b7280;
            text-align: center;
            margin-top: 20px;
            line-height: 1.5;
            padding: 10px;
        }
        
        .exit-terms-text a {
            color: #72a94e;
            text-decoration: none;
            font-weight: 600;
        }
        
        .exit-terms-text a:hover {
            text-decoration: underline;
        }
        
        /* Success Overlay */
        .exit-success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999999;
        }
        
        .exit-success-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 400px;
        }
        
        .exit-success-icon {
            font-size: 60px;
            color: #72a94e;
            margin-bottom: 20px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .exit-form-section {
                padding: 40px 30px;
            }
            
            .exit-form-title {
                font-size: 22px;
            }
            
            .exit-popup-container {
                width: 95%;
            }
        }
        
        @media (max-width: 480px) {
            .exit-form-section {
                padding: 30px 20px;
            }
            
            .exit-form-title {
                font-size: 20px;
            }
            
            .exit-form-input {
                padding: 14px 16px;
                font-size: 15px;
            }
            
            .get-action-btn {
                padding: 15px 25px;
                font-size: 15px;
            }
            
            .btn-close-to {
                top: 15px;
                right: 15px;
                width: 35px;
                height: 35px;
            }
        }